Update solutions/object_oriented_design/parking_lot/parking_lot.py

Copilot

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
pull/1079/head
Ido Ophir 2025-04-07 13:35:19 +03:00
parent 1edf1696f0
commit d65fca4644
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class Vehicle(metaclass=ABCMeta):
def __init__(self, vehicle_size, license_plate, spot_size):
self.vehicle_size = vehicle_size
self.license_plate = license_plate
self.spot_size=spot_size
self.spot_size = spot_size
self.spots_taken = []
def clear_spots(self):