This commit is contained in:
Sreedhar Ande 2021-06-07 20:56:13 -07:00
Родитель 8a15c766c4
Коммит d8731b868f
2 изменённых файлов: 7 добавлений и 0 удалений

Двоичный файл не отображается.

Просмотреть файл

@ -228,6 +228,13 @@ class S3Client:
except Exception as err:
logging.error('Error while unpacking file {} - {}'.format(key, err))
@staticmethod
def convert_empty_string_to_null_values(d: dict):
for k, v in d.items():
if v == '' or (isinstance(v, list) and len(v) == 1 and v[0] == ''):
d[k] = None
return d
@staticmethod
def format_date(date_string, input_format, output_format):
try: