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

Drop 0 parameter

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