def _action()

in hexforge_modules/search_modules.py [0:0]


    def _action(self) -> None:

        data = helper.get_highlighted_string_from_decompiler()
        try:
            formatted_url = f"https://www.virustotal.com/gui/search/content%253A%2520{data}"
            ida_kernwin.open_url(formatted_url)
            
        except Exception as e:
            print(e)
            return None