diff options
author | Matthew Lemon <y@yulqen.org> | 2023-04-14 15:15:07 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-04-14 15:15:07 +0100 |
commit | 8977813ff3d3717180827f4dfcb88ea96e4b5389 (patch) | |
tree | 76396b531ec56c3e31d06b1f6d90f276c0780528 | |
parent | 786fd2865f44cc617989d74423bf6ede128a61a2 (diff) |
wip: Formatting change
-rw-r--r-- | datamaps/process/cleansers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/datamaps/process/cleansers.py b/datamaps/process/cleansers.py index 7c5aa8d..29cf563 100644 --- a/datamaps/process/cleansers.py +++ b/datamaps/process/cleansers.py @@ -188,7 +188,8 @@ class Cleanser: """ Handles dates in "03/05/2016" format. """ - # TODO: separate function needed here to assert that month values are in 'MM' format + # TODO: separate function needed here to assert that month values are in 'MM' + # format # TODO: investigate rules for the year m = re.match(regex, self.string) if int(m.groups()[-1]) in range(1965, 1967): |