diff --git a/Database/scr/normalize_data.py b/Database/scr/normalize_data.py deleted file mode 100644 index 62adf91f0..000000000 --- a/Database/scr/normalize_data.py +++ /dev/null @@ -1,14 +0,0 @@ -from .log_utils import Logging - - -class DataGapUtils: - def __init__(self): - self.logger = Logging.get_logger("data-gap-utils") - - @staticmethod - def fill_date(row: dict, replace_with_date: dict): - date_cols = [x for x in row.keys() if "_Date_" in x] - if all([True if row[d] is None else False for d in date_cols]): - for c in date_cols: - row[c] = replace_with_date[c] - return row