From 6a887abeffb25cf5aaa97869f76f0852e2109c33 Mon Sep 17 00:00:00 2001 From: Christopher Vega Date: Tue, 5 Apr 2022 18:23:00 -0600 Subject: [PATCH] Tried to commit assignment #7 --- Lab 08 - Sprites/lab_08.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Lab 08 - Sprites/lab_08.py b/Lab 08 - Sprites/lab_08.py index da63a518e..e3bf633c4 100644 --- a/Lab 08 - Sprites/lab_08.py +++ b/Lab 08 - Sprites/lab_08.py @@ -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)