Compare commits
No commits in common. "52209a5ebd05df89913c23680c5beb98c12d5804" and "b0edfb7b01dbf9bdc59c0fb1fda1847f9339ab33" have entirely different histories.
52209a5ebd
...
b0edfb7b01
|
@ -64,12 +64,10 @@ class Logger:
|
|||
d = {}
|
||||
for key, value in row.items():
|
||||
if key == 'data':
|
||||
if isinstance(value, dict):
|
||||
pass
|
||||
elif not value:
|
||||
if not value:
|
||||
value = {}
|
||||
else:
|
||||
value = loads(value)
|
||||
# else:
|
||||
# value = loads(value)
|
||||
elif key in ['start_date', 'stop_date']:
|
||||
value = str(value)
|
||||
d[key] = value
|
||||
|
|
Loading…
Reference in New Issue