Skip to content

Commit

Permalink
Init spot_size member in parking lot exercise (donnemartin#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpark authored and donnemartin committed May 30, 2017
1 parent e168c58 commit 4badddd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
" def __init__(self, vehicle_size, license_plate, spot_size):\n",
" self.vehicle_size = vehicle_size\n",
" self.license_plate = license_plate\n",
" self.spot_size\n",
" self.spot_size = spot_size\n",
" self.spots_taken = []\n",
"\n",
" def clear_spots(self):\n",
Expand Down

0 comments on commit 4badddd

Please sign in to comment.