Skip to content

Commit e7b7e79

Browse files
committed
Formatted with Black.
1 parent 9731763 commit e7b7e79

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

push_data_to_ccos/get_community_team_data.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,10 @@ def prune_databag(databag):
9696
Sometimes empty projects find their way into the databag.
9797
This function prunes out the empty ones.
9898
"""
99-
pruned = {"projects": [], "community_builders": databag["community_builders"]}
99+
pruned = {
100+
"projects": [],
101+
"community_builders": databag["community_builders"],
102+
}
100103

101104
for project in databag["projects"]:
102105
if len(project["members"]) > 0:

push_data_to_ccos/sync_data.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010

1111
if __name__ == "__main__":
12-
push_data(get_repo_data(), 'repos.json')
13-
push_data(get_search_roadmap_data(), 'search_roadmap.json')
14-
push_data(get_community_team_data(), 'community_team_members.json')
12+
push_data(get_repo_data(), "repos.json")
13+
push_data(get_search_roadmap_data(), "search_roadmap.json")
14+
push_data(get_community_team_data(), "community_team_members.json")

0 commit comments

Comments
 (0)