Skip to content

Commit d747146

Browse files
committed
github.py: tweak line wrapping
1 parent 6d9ec32 commit d747146

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

github.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ def __init__(self, items=[], max_results=10000, token=None):
2020
self._max_results = max_results
2121

2222
def repo(self, org, repo):
23-
return GitHubIssues(self.issues(lambda item: item['repository_url'].endswith(f'/repos/{org}/{repo}')), max_results=self._max_results, token=self._token)
23+
return GitHubIssues(self.issues(lambda item: item['repository_url'].endswith(f'/repos/{org}/{repo}')),
24+
max_results=self._max_results, token=self._token)
2425

2526
def issues(self, predicate=lambda x: True):
2627
return list(filter(predicate, self._json['items']))

0 commit comments

Comments
 (0)