Skip to content

Commit 65ab80a

Browse files
committedOct 17, 2020
💄 update coding styel
1 parent d884388 commit 65ab80a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎moban_jinja2_github/contributors.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ def get_contributors(user, repo, exclude_contributors=()):
66
repo = EndPoint(user, repo)
77
try:
88
user_list = repo.get_all_contributors()
9-
9+
print(exclude_contributors)
1010
user_list = [
1111
detail
1212
for detail in user_list
13-
if "login" in detail and detail["login"] not in exclude_contributors
13+
if "login" in detail
14+
and detail["login"] not in exclude_contributors
1415
]
1516
return user_list
1617
except UrlNotFound:

0 commit comments

Comments
 (0)