Minor code cleanup

This commit is contained in:
Orsiris de Jong 2024-08-04 16:52:22 +02:00
parent 271c3893c3
commit aa5791a692

View file

@ -914,7 +914,7 @@ def get_repos_by_group(full_config: dict, group: str) -> List[str]:
"""
repo_list = []
if full_config:
for repo in list(full_config.g("repos").keys()):
for repo in get_repo_list(full_config):
if (
full_config.g(f"repos.{repo}.repo_group") == group or group == "__all__"
) and group not in repo_list: