diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:18:53 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
commit | 6cfd4b30cda23270b5bd2d1e287e647664a49fee (patch) | |
tree | b67cddfb4946a360a3bcdc3bd32ebd14a9fe6f30 | |
parent | ccaae094ce6be2727c90788fc5b1222fda3927c8 (diff) | |
download | gitpython-6cfd4b30cda23270b5bd2d1e287e647664a49fee.tar.gz |
renamed unused variables
-rw-r--r-- | git/refs/symbolic.py | 2 |
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 |