Skip to content

Commit 810b50c

Browse files
committed
Finish fixing type errors on windows
1 parent b018907 commit 810b50c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd2/cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1631,7 +1631,7 @@ def ppaged(
16311631
# If the pager was killed (e.g. SIGKILL), the terminal might be in a bad state.
16321632
# Attempt to restore terminal settings and foreground process group.
16331633
if self._initial_termios_settings is not None and self.stdin.isatty(): # type: ignore[unreachable]
1634-
try:
1634+
try: # type: ignore[unreachable]
16351635
import signal
16361636
import termios
16371637

0 commit comments

Comments
 (0)