Skip to content

Commit 6a887ab

Browse files
committed
Tried to commit assignment pythonarcade#7
1 parent 8991b9c commit 6a887ab

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Lab 08 - Sprites/lab_08.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,10 @@ class MyGame(arcade.Window):
2525
""" Main application class """
2626

2727

28+
2829
def __init__(self, width, height, title):
2930
super().__init__(width, height, title)
3031

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

0 commit comments

Comments
 (0)