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 95c3e8a commit acb6cd8Copy full SHA for acb6cd8
labelbox/schema/project.py
@@ -276,7 +276,8 @@ def _validate_datetime(string_date: str) -> None:
276
"""helper function validate that datetime is as follows: YYYY-MM-DD for the export"""
277
if string_date:
278
try:
279
- datetime.fromisoformat(string_date)
+ datetime.fromisoformat(
280
+ string_date) # type: ignore[attr-defined]
281
except:
282
raise ValueError(f"""Incorrect format for: {string_date}.
283
Format must be \"YYYY-MM-DD\"""")
0 commit comments