Skip to content

Commit

Permalink
Adding missing self variable (donnemartin#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and donnemartin committed May 7, 2018
1 parent a70a8f3 commit 4a7d2e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(self, num_levels):
self.levels = [] # List of Levels

def park_vehicle(self, vehicle):
for level in levels:
for level in self.levels:
if level.park_vehicle(vehicle):
return True
return False
Expand Down

0 comments on commit 4a7d2e4

Please sign in to comment.