File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,10 @@ def prune_databag(databag):
96
96
Sometimes empty projects find their way into the databag.
97
97
This function prunes out the empty ones.
98
98
"""
99
- pruned = {"projects" : [], "community_builders" : databag ["community_builders" ]}
99
+ pruned = {
100
+ "projects" : [],
101
+ "community_builders" : databag ["community_builders" ],
102
+ }
100
103
101
104
for project in databag ["projects" ]:
102
105
if len (project ["members" ]) > 0 :
Original file line number Diff line number Diff line change 9
9
10
10
11
11
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" )
You can’t perform that action at this time.
0 commit comments