Commit 07b90cae authored by Georg Brandl's avatar Georg Brandl

#8861: remove unused variable.

parent 0abcbd7a
......@@ -17,10 +17,9 @@ def wrapper(func, *args, **kwds):
wrapper().
"""
res = None
try:
# Initialize curses
stdscr=curses.initscr()
stdscr = curses.initscr()
# Turn off echoing of keys, and enter cbreak mode,
# where no buffering is performed on keyboard input
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment