-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix circular imports for now, group things should be moved out of
settings module at some point
- Loading branch information
1 parent
4ea0b6a
commit c578cc4
Showing
4 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from typing import List | ||
|
||
# TODO: move all group related things here from settings | ||
# make new settings_helper.py with (verify_dir_structure etc) and separate settings_groups for get_settigns groups? | ||
# use get_group_settings_asdict instead of passing dict in get_groups_using_branch below | ||
|
||
|
||
def get_groups_using_branch(branch_name: str, group_settings: dict) -> List[str]: | ||
"""Returns a list of group names that use the specified branch name""" | ||
groups = [] | ||
for group_name, group_data in group_settings.items(): | ||
if group_data.get("templates_branch") == branch_name: | ||
groups.append(group_name) | ||
return groups |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters