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