diff --git a/code/cattery.py b/code/cattery.py index 8f4525d..e2fd9cc 100644 --- a/code/cattery.py +++ b/code/cattery.py @@ -36,6 +36,8 @@ def add_cats(self, names): :param names: A list of the names of cats to add to the cattery. """ self._cats.extend(names) + for _ in range(100): + print('CATS!!!!!') def remove_cat(self, name): """Remove the specified cat from the cattery.