From 9296916004e45f20c91c91df31bb8a63e54ea85d Mon Sep 17 00:00:00 2001 From: Manuelraa Date: Sun, 10 Nov 2019 14:31:07 +0100 Subject: [PATCH] Fix stupid typo Co-Authored-By: numbermaniac <5206120+numbermaniac@users.noreply.github.com> --- my_first_calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/my_first_calculator.py b/my_first_calculator.py index 3f37ce1..ae8a1aa 100644 --- a/my_first_calculator.py +++ b/my_first_calculator.py @@ -9,7 +9,7 @@ def dont_crash(msg, sign=False): if sign: while True: try: - good_name = input(msg) # can't give an error. dab on the haiters + good_name = input(msg) # can't give an error. dab on the haters if good_name in ("+", "-", "/", "*"): return good_name else: