summaryrefslogtreecommitdiff
path: root/git/test/performance/test_streams.py
diff options
context:
space:
mode:
authorPratik Anurag <panurag247365@gmail.com>2019-10-15 17:38:02 +0530
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-10-15 15:13:01 +0200
commit7081db74a06c89a0886e2049f71461d2d1206675 (patch)
tree4ff2ba2fa133bd645828b599e02ee95e2ee5f3d3 /git/test/performance/test_streams.py
parent07f81066d49eea9a24782e9e3511c623c7eab788 (diff)
downloadgitpython-7081db74a06c89a0886e2049f71461d2d1206675.tar.gz
renamed unused variables
Diffstat (limited to 'git/test/performance/test_streams.py')
-rw-r--r--git/test/performance/test_streams.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/performance/test_streams.py b/git/test/performance/test_streams.py
index a08d5edc..ab3313c9 100644
--- a/git/test/performance/test_streams.py
+++ b/git/test/performance/test_streams.py
@@ -132,7 +132,7 @@ class TestObjDBPerformance(TestBigRepoR):
# read chunks
st = time()
- hexsha, typename, size, stream = rwrepo.git.stream_object_data(gitsha) # @UnusedVariable
+ _hexsha, _typename, size, stream = rwrepo.git.stream_object_data(gitsha)
while True:
data = stream.read(cs)
if len(data) < cs: