Skip to content

Commit

Permalink
fifth try is the charm
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Nov 9, 2024
1 parent 26df70d commit 37402d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trimesh/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from .iteration import chain

# use our wrapped types for wider version compatibility
from .typed import Dict, Optional, Sequence, Set, Union
from .typed import Dict, Iterable, Optional, Set, Union

# create a default logger
log = logging.getLogger("trimesh")
Expand Down Expand Up @@ -2361,7 +2361,7 @@ def is_ccw(points, return_all=False):

def unique_name(
start: Optional[str],
contains: Union[Set, Mapping, Sequence],
contains: Union[Set, Mapping, Iterable],
counts: Optional[Dict] = None,
):
"""
Expand Down

0 comments on commit 37402d1

Please sign in to comment.