Skip to content

Commit

Permalink
Loosen times a little
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam committed Jun 17, 2022
1 parent e20efce commit 8ec4a60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gruut/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.3
2.3.4
2 changes: 1 addition & 1 deletion gruut/lang.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def get_cs_settings(lang_dir=None, **settings_args) -> TextProcessorSettings:
)

EN_MAYBE_DATE_PATTERN = re.compile(r"[0-9]+[-/][0-9]+")
EN_MAYBE_TIME_PATTERN = re.compile(r"[0-9]+:[0-9]+")
EN_MAYBE_TIME_PATTERN = re.compile(r"[0-9]+[:ap]", re.IGNORECASE)


def en_is_initialism(text: str) -> bool:
Expand Down

0 comments on commit 8ec4a60

Please sign in to comment.