Skip to content
This repository has been archived by the owner on Nov 21, 2022. It is now read-only.

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
wzykubek committed Jul 21, 2020
1 parent 6332099 commit cfe2697
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ByteBird/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def handle_movements():

def main():
screen.write_blinking_text(' ' + '.'*5, stop_after=2)
_ = Thread(target=handle_movements, daemon=True).start()
Thread(target=handle_movements, daemon=True).start()
i = 1

while True:
Expand All @@ -105,7 +105,7 @@ def main():
if i != ctx.hero_index:
draw_hurdles(ctx.hurdles[0], i)

draw_hero(ctx.hero_position) # Restore hero on prevous position.
draw_hero(ctx.hero_position) # Restore hero on previous position.

if i > 4:
draw_hurdles(ctx.hurdles[1], i - 3)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def read(filename):

setup(
name="7seg-ByteBird",
version="0.1",
version="0.1.1",
author="samedamci",
author_email="samedamci@disroot.org",
description=(
Expand Down

0 comments on commit cfe2697

Please sign in to comment.