From a62716c5a48af6526fa5bd045f5f24ae718258a5 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 15 Jun 2022 13:26:49 +0200 Subject: [PATCH] Fix two mypy issues --- hackingtool.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hackingtool.py b/hackingtool.py index 7514d80..619bf18 100644 --- a/hackingtool.py +++ b/hackingtool.py @@ -105,13 +105,14 @@ if __name__ == "__main__": if not os.path.exists(archive): os.mkdir(archive) os.chdir(archive) - all_tools = AllTools() - all_tools.show_options() + AllTools().show_options() # If not Linux and probably Windows elif system() == "Windows": print( - "\033[91m Please Run This Tool On A Debian System For Best Results " "\e[00m") + "\033[91m Please Run This Tool On A Debian System For Best Results " + r"\e[00m" + ) sleep(2) webbrowser.open_new_tab("https://tinyurl.com/y522modc")