Add comment about extra issues request

We identified a potential improvement to github3.py which, when
complete, may be able to eliminate an extra github api call.

Change-Id: Ic6a9daf3f0dd87655d08ad6aa42d89cd02c7225f
This commit is contained in:
James E. Blair 2019-02-13 10:16:55 -08:00 committed by Tobias Henkel
parent 6b3333527c
commit b6b49375a1
1 changed files with 2 additions and 0 deletions

View File

@ -1134,6 +1134,8 @@ class GithubConnection(BaseConnection):
number, owner, proj))
time.sleep(1)
# Get the issue obj so we can get the labels (this is silly)
# TODO: this may be able to be simplified after
# https://github.com/sigmavirus24/github3.py/issues/924
issueobj = probj.issue()
pr = probj.as_dict()
try: