From e1913e80f9ca15d8bd6f88e4635971601e4385f9 Mon Sep 17 00:00:00 2001 From: Nauman Arif Date: Mon, 12 Sep 2022 18:23:01 +0500 Subject: [PATCH] chore(main): removes an extra item from dict Removes an extra item i.e. `'Augu': 8` from months dictionary in main.py --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index 78b2e99..1b8d528 100644 --- a/main.py +++ b/main.py @@ -43,7 +43,6 @@ def _monthNameToNumber(monthName: str): 'June': 6, 'July': 7, 'August': 8, - 'Augu': 8, 'September': 9, 'October': 10, 'November': 11,