From 31c81f6539969a5eba864d3305f9fb7bf716a367 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 2 Feb 2022 12:13:27 -0800 Subject: Used isort to sort imports. Also added to the git pre-commit hook. --- input_utils.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'input_utils.py') 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.') -- cgit v1.3