Skip to content

Commit

Permalink
Set types for globals
Browse files Browse the repository at this point in the history
  • Loading branch information
kkaris committed Jun 4, 2024
1 parent 3cf97f8 commit 4b62c4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyobo/api/names.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def get_name_by_curie(curie: str, *, version: Optional[str] = None) -> Optional[

X = TypeVar("X")

NO_BUILD_PREFIXES = set()
NO_BUILD_LOGGED = set()
NO_BUILD_PREFIXES: Set[str] = set()
NO_BUILD_LOGGED: Set = set()


def _help_get(
Expand Down

0 comments on commit 4b62c4e

Please sign in to comment.