From e6ba434796f7b87c360743fe0f06230f81592eea Mon Sep 17 00:00:00 2001 From: rhinemann Date: Tue, 27 Feb 2024 18:30:37 +0200 Subject: [PATCH] Fixed an infinite empty print bug. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index ca6417c..5d45226 100644 --- a/main.py +++ b/main.py @@ -93,7 +93,7 @@ def input_handler(first_register: bu.BasicRegister, second_register: bu.BasicReg while True: prompt_text: str = get_prompt_text(operation, method).format(first_register, second_register, operation, method) - print() + # print() if operation == "": raw_user_input = input("Choose the operation:\n" "[a]ddition, [s]ubtraction, [m]ultiplication, [d]ivision, [q]uit\n" +