Skip to content

Commit

Permalink
Remove yyyyddmm from dateformat logging
Browse files Browse the repository at this point in the history
  • Loading branch information
joweich committed Dec 3, 2023
1 parent 46960d5 commit e66ffbc
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions chatminer/chatparsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,12 +394,8 @@ def _log_resulting_format(self):
end = "]" if self.has_brackets else ""
if self.is_yearfirst:
date1 = "year"
if self.is_dayfirst:
date2 = "day"
date3 = "month"
else:
date2 = "month"
date3 = "day"
date2 = "month"
date3 = "day"
elif self.is_dayfirst:
date1 = "day"
date2 = "month"
Expand Down

0 comments on commit e66ffbc

Please sign in to comment.