From 69a0fe2dfb60aa86cbb5ee65f0a8fb112d54b650 Mon Sep 17 00:00:00 2001 From: dw-0 Date: Sun, 11 Aug 2024 12:54:44 +0200 Subject: [PATCH] fix: remove redundant print statement Signed-off-by: Dominik Willner --- kiauh/utils/input_utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/kiauh/utils/input_utils.py b/kiauh/utils/input_utils.py index 6869225..6901921 100644 --- a/kiauh/utils/input_utils.py +++ b/kiauh/utils/input_utils.py @@ -104,8 +104,6 @@ def get_string_input( while True: _input = input(_question) - print(_input) - if _input.lower() in _exclude: Logger.print_error("This value is already in use/reserved.") elif default is not None and _input == "":