From d86398e8f9563ca2741db86c1dea40db73fc05af Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Sun, 26 Dec 2021 16:20:26 -0800 Subject: [PATCH] Fix restore_mode() signature on Windows. Refs #48 --- py65/utils/console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py65/utils/console.py b/py65/utils/console.py index b31f1b7..cc9987f 100644 --- a/py65/utils/console.py +++ b/py65/utils/console.py @@ -15,7 +15,7 @@ if sys.platform[:3] == "win": """ noncanonical_mode is a no-op on Windows. """ return - def restore_mode(stdin): + def restore_mode(): """ restore_mode is a no-op on Windows. """ return