summaryrefslogtreecommitdiff
path: root/git/refs
diff options
context:
space:
mode:
authorPratik Anurag <panurag247365@gmail.com>2019-10-15 17:18:53 +0530
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-10-15 15:13:01 +0200
commit6cfd4b30cda23270b5bd2d1e287e647664a49fee (patch)
treeb67cddfb4946a360a3bcdc3bd32ebd14a9fe6f30 /git/refs
parentccaae094ce6be2727c90788fc5b1222fda3927c8 (diff)
downloadgitpython-6cfd4b30cda23270b5bd2d1e287e647664a49fee.tar.gz
renamed unused variables
Diffstat (limited to 'git/refs')
-rw-r--r--git/refs/symbolic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/refs/symbolic.py b/git/refs/symbolic.py
index a8ca6538..766037c1 100644
--- a/git/refs/symbolic.py
+++ b/git/refs/symbolic.py
@@ -614,7 +614,7 @@ class SymbolicReference(object):
# END for each directory to walk
# read packed refs
- for sha, rela_path in cls._iter_packed_refs(repo): # @UnusedVariable
+ for _sha, rela_path in cls._iter_packed_refs(repo):
if rela_path.startswith(common_path):
rela_paths.add(rela_path)
# END relative path matches common path