diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:23:14 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
commit | 14f3d06b47526d6f654490b4e850567e1b5d7626 (patch) | |
tree | 3bcaec11079aadef864611f022582cd24cb66aa9 /git/test/test_remote.py | |
parent | 1349ee61bf58656e00cac5155389af5827934567 (diff) | |
download | gitpython-14f3d06b47526d6f654490b4e850567e1b5d7626.tar.gz |
renamed unsed variables
Diffstat (limited to 'git/test/test_remote.py')
-rw-r--r-- | git/test/test_remote.py | 2 |
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 |