Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 5, 2023
1 parent 9856893 commit 7fd9a6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
from pygeoif.functions import compare_geo_interface
from pygeoif.functions import convex_hull
from pygeoif.functions import dedupe
from pygeoif.functions import signed_area
from pygeoif.functions import is_coordinate
from pygeoif.functions import signed_area


def circle_ish(x, y, r, steps):
Expand Down Expand Up @@ -462,8 +462,8 @@ def test_is_coordinate() -> None:

def test_is_coordinate_not_composite_coordinates() -> None:
assert is_coordinate([(1, 2)]) is False
assert is_coordinate(((1, 2), )) is False
assert is_coordinate((((1, 2), ), )) is False
assert is_coordinate(((1, 2),)) is False
assert is_coordinate((((1, 2),),)) is False


def test_is_coordinate_not_primitive() -> None:
Expand Down

0 comments on commit 7fd9a6f

Please sign in to comment.