Skip to content

Commit

Permalink
Tried to commit assignment pythonarcade#7
Browse files Browse the repository at this point in the history
  • Loading branch information
cvega42 committed Apr 6, 2022
1 parent 8991b9c commit 6a887ab
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Lab 08 - Sprites/lab_08.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,10 @@ class MyGame(arcade.Window):
""" Main application class """



def __init__(self, width, height, title):
super().__init__(width, height, title)

# Set the working directory (where we expect to find files) to the same
# directory this .py file is in. You can leave this out of your own
# code, but it is needed to easily run the examples using "python -m"
# as mentioned at the top of this program.
file_path = os.path.dirname(os.path.abspath(__file__))
os.chdir(file_path)

Expand Down

0 comments on commit 6a887ab

Please sign in to comment.