summaryrefslogtreecommitdiff
path: root/git/test/test_remote.py
diff options
context:
space:
mode:
authorPratik Anurag <panurag247365@gmail.com>2019-10-15 17:23:14 +0530
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-10-15 15:13:01 +0200
commit14f3d06b47526d6f654490b4e850567e1b5d7626 (patch)
tree3bcaec11079aadef864611f022582cd24cb66aa9 /git/test/test_remote.py
parent1349ee61bf58656e00cac5155389af5827934567 (diff)
downloadgitpython-14f3d06b47526d6f654490b4e850567e1b5d7626.tar.gz
renamed unsed variables
Diffstat (limited to 'git/test/test_remote.py')
-rw-r--r--git/test/test_remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py
index 77e3ffbf..a7a49909 100644
--- a/git/test/test_remote.py
+++ b/git/test/test_remote.py
@@ -93,7 +93,7 @@ class TestRemoteProgress(RemoteProgress):
assert self._stages_per_op
# must have seen all stages
- for op, stages in self._stages_per_op.items(): # @UnusedVariable
+ for _op, stages in self._stages_per_op.items():
assert stages & self.STAGE_MASK == self.STAGE_MASK
# END for each op/stage