Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Nov 12, 2024
1 parent 467016f commit 755fcbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

from hypothesis import strategies as _st

from rene import Location, MIN_CONTOUR_VERTICES_COUNT, Orientation, exact, f64
from rene import Location, MIN_CONTOUR_VERTICES_COUNT, Orientation, exact
from rene._utils import deduplicate, locate_point_in_point_point_point_circle

_BoxT = TypeVar('_BoxT', exact.Box, f64.Box)
_BoxT = TypeVar('_BoxT', bound=exact.Box)
_ContourT = TypeVar('_ContourT', bound=exact.Contour)
_EmptyT = TypeVar('_EmptyT', bound=exact.Empty)
_MultipolygonT = TypeVar('_MultipolygonT', bound=exact.Multipolygon)
Expand Down

0 comments on commit 755fcbd

Please sign in to comment.