diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:21:33 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
commit | b7d2671c6ef156d1a2f6518de4bd43e3bb8745be (patch) | |
tree | 10b74f930eef942e7406498720ce5598844b8ddb /git/test/test_commit.py | |
parent | a37405664efe3b19af625b11de62832a8cfd311c (diff) | |
download | gitpython-b7d2671c6ef156d1a2f6518de4bd43e3bb8745be.tar.gz |
renamed ununsed variables
Diffstat (limited to 'git/test/test_commit.py')
-rw-r--r-- | git/test/test_commit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_commit.py b/git/test/test_commit.py index cd6c5d5f..00b6d8dc 100644 --- a/git/test/test_commit.py +++ b/git/test/test_commit.py @@ -125,7 +125,7 @@ class TestCommit(TestBase): check_entries(stats.total) assert "files" in stats.total - for filepath, d in stats.files.items(): # @UnusedVariable + for _filepath, d in stats.files.items(): check_entries(d) # END for each stated file |