mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-26 21:37:40 +00:00
13 lines
247 B
Python
13 lines
247 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
|
|
]
|