We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 973016b commit 9aaeb72Copy full SHA for 9aaeb72
labelbox/utils.py
@@ -14,7 +14,6 @@
14
DFLT_TZ = tzoffset("UTC", 0000)
15
16
17
-
18
def _convert(s, sep, title):
19
components = re.findall(r"[A-Z][a-z0-9]*|[a-z][a-z0-9]*", s)
20
components = list(map(str.lower, filter(None, components)))
@@ -97,4 +96,4 @@ def format_iso_default_utc(date_string: str) -> datetime.datetime:
97
96
to a datetime object.
98
For missing offsets, the default offset is UTC.
99
"""
100
- return default_tzinfo(dateutil_parse(date_string), DFLT_TZ)
+ return default_tzinfo(dateutil_parse(date_string), DFLT_TZ)
0 commit comments