Skip to content

Commit

Permalink
disabled ruff check for unsafe long line
Browse files Browse the repository at this point in the history
  • Loading branch information
barrydaniels-nl committed Dec 16, 2024
1 parent dc0e929 commit 5a3c7ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/test_dynamic_api/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,11 +451,11 @@ def test_str2geo_invalid(value, expected_exception):
# GeoJSON formats with valid Netherlands coordinates (Amsterdam area)
('{"type": "Point", "coordinates": [4.9, 52.4]}', "Point"), # WGS84
(
'{"type": "Polygon", "coordinates": [[[4.9, 52.4], [4.9, 52.5], [5.0, 52.5], [5.0, 52.4], [4.9, 52.4]]]}',
'{"type": "Polygon", "coordinates": [[[4.9, 52.4], [4.9, 52.5], [5.0, 52.5], [5.0, 52.4], [4.9, 52.4]]]}', # noqa: E501
"Polygon",
),
(
'{"type": "MultiPolygon", "coordinates": [[[[4.9, 52.4], [4.9, 52.5], [5.0, 52.5], [5.0, 52.4], [4.9, 52.4]]]]}',
'{"type": "MultiPolygon", "coordinates": [[[[4.9, 52.4], [4.9, 52.5], [5.0, 52.5], [5.0, 52.4], [4.9, 52.4]]]]}', # noqa: E501
"MultiPolygon",
),
],
Expand Down

0 comments on commit 5a3c7ca

Please sign in to comment.