return an empty list upon exception
This commit is contained in:
@@ -77,7 +77,7 @@ class AnimalShelter(object):
|
||||
return dataList # Return the list
|
||||
except Exception as e:
|
||||
print(f'Exception: {e}') # Exception handling
|
||||
return False # Failed operation, so return false
|
||||
return [] # Return empty list
|
||||
# Update
|
||||
def update(self, **kwargs):
|
||||
"""
|
||||
|
Reference in New Issue
Block a user