Skip to content

Commit

Permalink
unique_name type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Nov 9, 2024
1 parent f1ad74d commit 3389e4f
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, List, Optional, Set, Union
from .typed import Dict, Optional, Sequence, Set, Union

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


def unique_name(
start: str, contains: Union[Dict, Set, List], counts: Optional[Dict] = None
start: str, contains: Union[Dict, Set, Sequence], counts: Optional[Dict] = None
):
"""
Deterministically generate a unique name not
Expand Down

0 comments on commit 3389e4f

Please sign in to comment.