From c2a5dc89ea7c6f22ab503f52a5a4a6c693c7bf4a Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Sat, 31 Dec 2022 14:49:26 +0200 Subject: [PATCH] Update main.py --- octosuite/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octosuite/main.py b/octosuite/main.py index 7907c5f..6b6eee6 100644 --- a/octosuite/main.py +++ b/octosuite/main.py @@ -27,7 +27,7 @@ def octosuite(): """ xprint(banner()[0], banner()[1]) while True: - command_input = Prompt.ask(f"{white}┌──({red}{getpass.getuser()}{white}@{red}octosuite{white})\n├──[~{green}{os.getcwd()}{white}]\n└╼ {reset}") + command_input = Prompt.ask(f"{white}┌──({red}{getpass.getuser()}{white}@{red}octosuite{white})\n├──[~{green}{os.getcwd()}{white}]\n└╼{reset}") """ Iterate over the command_map and check if the user input matches any command in it [command_map], if there's a match, we return its method. If no match is found, we ignore it.