diff --git a/dcicutils/portal_utils.py b/dcicutils/portal_utils.py index 3a854bcc1..f93b0250b 100644 --- a/dcicutils/portal_utils.py +++ b/dcicutils/portal_utils.py @@ -502,7 +502,7 @@ def is_lookup_subtypes(lookup_options: int) -> bool: # noqa @function_cache(maxsize=100, serialize_key=True) def get_identifying_path(self, portal_object: dict, portal_type: Optional[Union[str, dict]] = None, lookup_strategy: Optional[Union[Callable, bool]] = None) -> Optional[str]: - if identifying_paths := self.get_identifying_path(portal_object, portal_type, lookup_strategy): + if identifying_paths := self.get_identifying_paths(portal_object, portal_type, lookup_strategy): return identifying_paths[0] return None diff --git a/pyproject.toml b/pyproject.toml index 85fc29b28..e0391f98a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dcicutils" -version = "8.8.6.1b9" +version = "8.8.6.1b10" description = "Utility package for interacting with the 4DN Data Portal and other 4DN resources" authors = ["4DN-DCIC Team "] license = "MIT"