mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-23 18:31:22 +00:00
12 lines
238 B
Python
12 lines
238 B
Python
import datetime
|
|
|
|
|
|
def is_datetime(value):
|
|
return isinstance(value, datetime.datetime)
|
|
|
|
|
|
def convert_datetime_in_row(row):
|
|
return [value.strftime('%Y-%m-%d %H:%M:%S') if is_datetime(value)
|
|
else value for value in row]
|
|
|