diff options
-rw-r--r-- | datamaps/process/cleansers.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/datamaps/process/cleansers.py b/datamaps/process/cleansers.py index d2225ce..7c5aa8d 100644 --- a/datamaps/process/cleansers.py +++ b/datamaps/process/cleansers.py @@ -188,6 +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: investigate rules for the year m = re.match(regex, self.string) if int(m.groups()[-1]) in range(1965, 1967): logger.warning( |