From 231a06a9e770d658e8803d1a4e8552ad8a404e00 Mon Sep 17 00:00:00 2001 From: Sai Krishna Date: Sat, 19 Dec 2020 18:24:52 +0530 Subject: [PATCH] fixed error in the print statement print statement in line 32 did not have a closed bracket --- factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factory.py b/factory.py index 3dbd617..717497e 100644 --- a/factory.py +++ b/factory.py @@ -29,5 +29,5 @@ def create_pizza(pizza_type): if __name__ == '__main__': for pizza_type in ('HamMushroom', 'Deluxe', 'Hawaiian'): - print('Price of {0} is {1}'.format(pizza_type, PizzaFactory.create_pizza(pizza_type).get_price()) + print('Price of {0} is {1}'.format(pizza_type, PizzaFactory.create_pizza(pizza_type).get_price()))