fix: remove redundant print statement

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
dw-0
2024-08-11 12:54:44 +02:00
parent 13611ccd52
commit 69a0fe2dfb

View File

@@ -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 == "":