Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalGawor committed Jun 10, 2024
1 parent 21c9a58 commit 262280f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doglib/doglib.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,5 +317,7 @@ def is_pid(self, pid_string: Union[str, PID]) -> bool:
pid = pid_factory(pid_string)
return True if pid is not None else False

def get_repository_report(self):

def get_all_repositories(self) -> List[dict]:
all_repos = [repo.__dict__() for repo in self.reg_repos]
all_repos.sort(reverse=True, key=lambda x: x["host_name"])
return all_repos

0 comments on commit 262280f

Please sign in to comment.