pull/755/merge
Akshitha Kumbam 2024-12-02 18:07:18 +00:00 committed by GitHub
commit 9e1a34cb9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class ParkingSpot(object):
self.vehicle = None
def is_available(self):
return True if self.vehicle is None else False
return self.vehicle == None
def can_fit_vehicle(self, vehicle):
if self.vehicle is not None: