From 1354604581c68dc3d54fc777a892c0afc9495d37 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz <henrik@levkowetz.com> Date: Mon, 7 Sep 2020 14:57:00 +0000 Subject: [PATCH] Fixed a pyflakes nit. - Legacy-Id: 18470 --- ietf/doc/management/commands/find_github_backup_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/doc/management/commands/find_github_backup_info.py b/ietf/doc/management/commands/find_github_backup_info.py index dd371d088..f1f71452d 100644 --- a/ietf/doc/management/commands/find_github_backup_info.py +++ b/ietf/doc/management/commands/find_github_backup_info.py @@ -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