Skip to content

Commit 566d6cb

Browse files
committed
Fix SyntaxError
1 parent 7d0d3ef commit 566d6cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

curtsies/window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ def demo():
533533
with FullscreenWindow(sys.stdout) as w:
534534
with input.Input(sys.stdin) as input_generator:
535535
rows, columns = w.t.height, w.t.width
536-
for c in input_generator
536+
for c in input_generator:
537537
assert isinstance(c, Text)
538538
if c == "":
539539
sys.exit() # same as raise SystemExit()

0 commit comments

Comments
 (0)