Skip to content

Commit 10b00bb

Browse files
committed
🔧 fix: fixed failing test
Signed-off-by: saif <[email protected]>
1 parent c359b02 commit 10b00bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mapillary/config/api/entities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def search_for_images( # noqa: C901, 'search_for_images is too complex'
297297
if isinstance(value, str):
298298

299299
# ... check if the string is a valid datetime in the ISO8601 format ...
300-
if not is_iso8601_datetime_format(value) and Config.use_strict:
300+
if not is_iso8601_datetime_format(value):
301301

302302
# ... if not, raise an error ...
303303
if Config.use_strict:

0 commit comments

Comments
 (0)