diff --git a/src/pyob/core_utils.py b/src/pyob/core_utils.py index 91877ab..6268f5b 100644 --- a/src/pyob/core_utils.py +++ b/src/pyob/core_utils.py @@ -257,7 +257,7 @@ def _get_input_with_timeout(self, timeout: int) -> str: def _win32_input(self, start_time: float, timeout: int) -> str: import msvcrt # type: ignore - input_str = "" + input_str: str = "" prev_line_len = 0 while True: remaining = int(timeout - (time.time() - start_time))