X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=input_utils.py;h=a166d7a4169e56937e8bb63c4398aff1abc52564;hb=413d28443c7308414e8d283b9c5b9037463274f3;hp=e0b457d5a0e73ffc43d3d83ff09228328e6a641e;hpb=b29be4f1750fd20bd2eada88e751dfae85817882;p=python_utils.git diff --git a/input_utils.py b/input_utils.py index e0b457d..a166d7a 100644 --- a/input_utils.py +++ b/input_utils.py @@ -11,7 +11,6 @@ import readchar # type: ignore import exceptions - logger = logging.getLogger(__file__) @@ -52,9 +51,7 @@ def single_keystroke_response( print(prompt, end="") sys.stdout.flush() try: - response = _single_keystroke_response_internal( - valid_responses, timeout_seconds - ) + response = _single_keystroke_response_internal(valid_responses, timeout_seconds) if ord(response) == 3: raise KeyboardInterrupt('User pressed ^C in input_utils.')