summaryrefslogtreecommitdiff
path: root/Walls.py
diff options
context:
space:
mode:
Diffstat (limited to 'Walls.py')
-rw-r--r--Walls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Walls.py b/Walls.py
index 860a7ef..d591291 100644
--- a/Walls.py
+++ b/Walls.py
@@ -7,9 +7,9 @@ class Walls:
Supports iterating over the walls and checking if there is a wall at a specific coordinate.
Useful as a wrapper to later increase performance of these operations."""
- _walls = []
def __init__(self, walls):
+ _walls = []
self._walls = walls
def fromString(wallString):