aboutsummaryrefslogtreecommitdiff
path: root/src/blinky.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/blinky.py')
-rw-r--r--src/blinky.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/blinky.py b/src/blinky.py
index eee44a8..4c45644 100644
--- a/src/blinky.py
+++ b/src/blinky.py
@@ -1,8 +1,6 @@
from ghost import Ghost
+
class Blinky(Ghost):
def __init__(self, sprite_sheet, x, y):
super().__init__(sprite_sheet, "red", x, y)
-
-
-