diff options
| author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:20:21 +0530 |
|---|---|---|
| committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
| commit | a37405664efe3b19af625b11de62832a8cfd311c (patch) | |
| tree | 579d85d4b8f459eb3ff706ac25647d45eea7ec50 | |
| parent | 6cfd4b30cda23270b5bd2d1e287e647664a49fee (diff) | |
| download | GitPython-a37405664efe3b19af625b11de62832a8cfd311c.tar.gz GitPython-a37405664efe3b19af625b11de62832a8cfd311c.zip | |
renamed ununsed variables
| -rw-r--r-- | git/test/performance/test_streams.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/performance/test_streams.py b/git/test/performance/test_streams.py index 2e3772a0..a08d5edc 100644 --- a/git/test/performance/test_streams.py +++ b/git/test/performance/test_streams.py @@ -121,7 +121,7 @@ class TestObjDBPerformance(TestBigRepoR): # read all st = time() - hexsha, typename, size, data = rwrepo.git.get_object_data(gitsha) # @UnusedVariable + _hexsha, _typename, size, data = rwrepo.git.get_object_data(gitsha) # @UnusedVariable gelapsed_readall = time() - st print("Read %i KiB of %s data at once using git-cat-file in %f s ( %f Read KiB / s)" % (size_kib, desc, gelapsed_readall, size_kib / gelapsed_readall), file=sys.stderr) |
