Skip to content

Commit

Permalink
unique_name type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Nov 9, 2024
1 parent 3389e4f commit 26df70d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions trimesh/util.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
"Grab bag" of utility functions.
Grab bag of utility functions.
"""

import abc
Expand Down Expand Up @@ -2360,7 +2360,9 @@ def is_ccw(points, return_all=False):


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

0 comments on commit 26df70d

Please sign in to comment.