mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-16 18:52:12 +03:00
1f21c6d7f3
# Description Move some folders to packages Remove unused code
6 lines
145 B
Python
6 lines
145 B
Python
from datetime import datetime
|
|
|
|
|
|
def parse_message_time(message_time_str):
|
|
return datetime.strptime(message_time_str, "%Y-%m-%dT%H:%M:%S.%f")
|