Browse Source

removed arguments from makegrid

master
iamsosmart19 3 years ago
parent
commit
048e034844
  1. 2
      main.py

2
main.py

@ -18,7 +18,7 @@ class GridSquare:
def __repr__(self):
return str(self)
def makeGrid(height, width):
def makeGrid():
return [[GridSquare(SquareType.AISLE, None) for x in range(0,width)] for y in range(0,height)]
class Passenger:

Loading…
Cancel
Save