summaryrefslogtreecommitdiff
path: root/string_utils.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-01-31 21:38:46 -0800
committerScott <[email protected]>2022-01-31 21:38:46 -0800
commit9eba12cba5641d6a0b988038694cbc2dd52800c5 (patch)
tree450a3274655a3f07e33917db4812792c0a025952 /string_utils.py
parente224aee343a337beefc61acdfa263c88f0bde312 (diff)
Myre mypy fixes.
Diffstat (limited to 'string_utils.py')
-rw-r--r--string_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/string_utils.py b/string_utils.py
index 991793d..9a20466 100644
--- a/string_utils.py
+++ b/string_utils.py
@@ -1095,7 +1095,7 @@ def to_date(in_str: str) -> Optional[datetime.date]:
"""
Parses a date string. See DateParser docs for details.
"""
- import dateparse.dateparse_utils as dp
+ import dateparse.dateparse_utils as dp # type: ignore
try:
d = dp.DateParser()