feat: add support for DD-MMM-YYYY in data import (#37853)

This commit is contained in:
Nikhil Kothari 2026-03-09 00:47:48 +05:30 committed by GitHub
parent 921e474867
commit 733e62ba2c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2489,6 +2489,7 @@ def guess_date_format(date_string: str) -> str:
r"%y.%m.%d",
r"%d %b %Y",
r"%d %B %Y",
r"%d-%b-%Y",
]
TIME_FORMATS = [