Fixed a pyflakes nit.

- Legacy-Id: 18470
This commit is contained in:
Henrik Levkowetz 2020-09-07 14:57:00 +00:00
parent 0fa8800644
commit 1354604581

View file

@ -52,7 +52,7 @@ class Command(BaseCommand):
repo = path_parts[1]
if (owner, repo) not in repos:
try:
_ = github.repository(owner,repo)
github.repository(owner,repo)
repos.add( (owner, repo) )
except github3.exceptions.NotFoundError:
continue