Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
chrehall68 committed Dec 16, 2021
1 parent 8648e42 commit a6c9c13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions games/chapter4/practice/hockey.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def move(self):
"""
pass # your code here

def moveto(self, coordinate):
def move_to(self, coordinate):
"""
This should move self.rect so that its top left lies at
the provided coordinate.
Expand Down Expand Up @@ -466,7 +466,7 @@ def display_winning_text(self) -> None:
pass


class Hockey:
class Hockey(App):
"""
This is the functional class whose mainloop will be called
to play hockey.
Expand Down

0 comments on commit a6c9c13

Please sign in to comment.