diff options
Diffstat (limited to 'datamaps/process/cleansers.py')
-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): |