diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:28:54 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
commit | 07f81066d49eea9a24782e9e3511c623c7eab788 (patch) | |
tree | 81dba8db771cc40643f288d8ccdd1f1dc40d4272 | |
parent | 2d66f8f79629bcfa846a3d24a2a2c3b99fb2a13f (diff) | |
download | gitpython-07f81066d49eea9a24782e9e3511c623c7eab788.tar.gz |
renamed unused variables
-rw-r--r-- | git/test/test_index.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py index 065de887..2126edda 100644 --- a/git/test/test_index.py +++ b/git/test/test_index.py @@ -75,7 +75,7 @@ class TestIndex(TestBase): def _assert_fprogress(self, entries): self.assertEqual(len(entries), len(self._fprogress_map)) - for path, call_count in self._fprogress_map.items(): # @UnusedVariable + for _path, call_count in self._fprogress_map.items(): self.assertEqual(call_count, 2) # END for each item in progress map self._reset_progress() @@ -201,7 +201,7 @@ class TestIndex(TestBase): # test BlobFilter prefix = 'lib/git' - for stage, blob in base_index.iter_blobs(BlobFilter([prefix])): # @UnusedVariable + for _stage, blob in base_index.iter_blobs(BlobFilter([prefix])): assert blob.path.startswith(prefix) # writing a tree should fail with an unmerged index |