Skip to content

Commit 84b4b7b

Browse files
committed
woof
1 parent 7f4e266 commit 84b4b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patterns/creational/abstract_factory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def main() -> None:
9090

9191

9292
if __name__ == "__main__":
93-
animals = ['dog', 'cat']
93+
animals = [Dog, Cat]
9494
random_animal: type[Pet] = random.choice(animals)
9595

9696
shop = PetShop(random_animal)

0 commit comments

Comments
 (0)