diff --git a/02_python_crash_course/python_crash_course_book_code_with_typing/chapter_08/pizza.py b/02_python_crash_course/python_crash_course_book_code_with_typing/chapter_08/pizza.py index 563e5c50..6f5f80b9 100644 --- a/02_python_crash_course/python_crash_course_book_code_with_typing/chapter_08/pizza.py +++ b/02_python_crash_course/python_crash_course_book_code_with_typing/chapter_08/pizza.py @@ -1,8 +1,8 @@ -def make_pizza(size: int, *toppings: str)->Nonw: +def make_pizza(size: int, *toppings: str)->None: """Summarize the pizza we are about to make.""" print(f"\nMaking a {size}-inch pizza with the following toppings:") for topping in toppings: print(f"- {topping}") make_pizza(16, 'pepperoni') -make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese') \ No newline at end of file +make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese')