summaryrefslogtreecommitdiff
path: root/input_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'input_utils.py')
-rw-r--r--input_utils.py5
1 files changed, 1 insertions, 4 deletions
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.')