From 34ae3c4f65f177180d23bf295405943ffa01e375 Mon Sep 17 00:00:00 2001 From: Alana McKenzie Date: Thu, 17 Nov 2016 20:01:01 -0800 Subject: [PATCH] Added a message from the cats --- code/cattery.py | 2 ++ 1 file changed, 2 insertions(+) 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.