fix: add support for DD/MMM/YYYY when guessing date format
This commit is contained in:
parent
d7e63bec75
commit
6cfb09cef5
1 changed files with 1 additions and 0 deletions
|
|
@ -2461,6 +2461,7 @@ def dict_with_keys(dict, keys):
|
|||
def guess_date_format(date_string: str) -> str:
|
||||
DATE_FORMATS = [
|
||||
r"%d/%b/%y",
|
||||
r"%d/%b/%Y",
|
||||
r"%d-%m-%Y",
|
||||
r"%m-%d-%Y",
|
||||
r"%Y-%m-%d",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue