Commit 6f159b1d authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Drop 0 parameter

parent 08bcfc23
......@@ -4,7 +4,7 @@
# $Id$
#
# I'm dreaming of an ascii character-based monochrome Christmas,
# Just like the one's I used to know!
# Just like the ones I used to know!
# Via a full duplex communications channel,
# At 9600 bits per second,
# Even though it's kinda slow.
......@@ -272,7 +272,7 @@ def strng5():
def blinkit():
treescrn8.touchwin()
for cycle in range(0, 5):
for cycle in range(5):
if cycle == 0:
treescrn3.overlay(treescrn8)
treescrn8.refresh()
......@@ -380,7 +380,7 @@ def reindeer():
middeer0.refresh()
w_del_msg.refresh()
for looper in range(0, 2):
for looper in range(2):
deer_step(middeer3, y_pos, x_pos)
deer_step(middeer2, y_pos, x_pos)
deer_step(middeer1, y_pos, x_pos)
......
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