File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ ---
12linters :
2- flake8 : { }
3+ pep8 :
4+ python : 3
Original file line number Diff line number Diff line change @@ -198,7 +198,15 @@ def get_contributors():
198198 content = json .loads (response .body .decode ())
199199 signatures = sorted ([person ['profile_name' ]
200200 for person in content ['contributors' ]])
201- return signatures
201+
202+ v4_json = (
203+ 'https://script.google.com/macros/s/'
204+ 'AKfycbwqZ0JLlOKJEcvYUYFXo77o6nux9tSHvOJISUnk3yHi-Bk0Qanz/exec' )
205+ response = yield http_client .fetch (v4_json )
206+ content = json .loads (response .body .decode ())
207+ v4_signatures = sorted (content ['signatories' ])
208+
209+ return sorted (signatures + v4_signatures )
202210
203211
204212def configure_default_client ():
You can’t perform that action at this time.
0 commit comments