From db13dfb04b5d9da4f3a46cb7c7b4f7e236391387 Mon Sep 17 00:00:00 2001 From: strNophix Date: Fri, 8 Apr 2022 21:21:34 +0200 Subject: [PATCH] Removed unnecessary comments --- service.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/service.py b/service.py index 8f86d1c..bbd141b 100644 --- a/service.py +++ b/service.py @@ -85,14 +85,8 @@ def main() -> int: envs_dir = path.join("customers", customer_name, "envs") Path(envs_dir).mkdir(parents=True, exist_ok=True) - """ - Initializes models for the event loop - """ - p = Prompter(ps1=f"{customer_name} > ") - """ - The main "event" loop - """ + p = Prompter(ps1=f"{customer_name} > ") while True: print(P_OPTIONS) c = p.take_input("Keuze: ", RE_ANY)