summaryrefslogtreecommitdiff
path: root/day1/exercise/datestring.py
diff options
context:
space:
mode:
Diffstat (limited to 'day1/exercise/datestring.py')
-rw-r--r--day1/exercise/datestring.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/day1/exercise/datestring.py b/day1/exercise/datestring.py
index 4e8cad4..5a9c50f 100644
--- a/day1/exercise/datestring.py
+++ b/day1/exercise/datestring.py
@@ -1,6 +1,5 @@
-month2mm = { 'JAN': 1, 'FEB': 2, 'MAR': 3, 'APR': 4, 'MAY': 5,
-'JUN': 6, 'JUL': 7, 'AUG': 8, 'SEP': 9, 'OCT': 10, 'NOV': 11,
-'DEC': 12 }
+month2mm = { 'JAN': 1, 'FEB': 2, 'MAR': 3, 'APR': 4, 'MAY': 5, 'JUN': 6,
+'JUL': 7, 'AUG': 8, 'SEP': 9, 'OCT': 10, 'NOV': 11, 'DEC': 12 }
COMMA = ','
SPACE = ' '