diff options
author | Pratik Anurag <panurag247365@gmail.com> | 2019-10-15 17:22:30 +0530 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-15 15:13:01 +0200 |
commit | 1349ee61bf58656e00cac5155389af5827934567 (patch) | |
tree | 70d0370dcea07dcb102097f89c2a1f58520f3d97 /git/objects/commit.py | |
parent | b7d2671c6ef156d1a2f6518de4bd43e3bb8745be (diff) | |
download | gitpython-1349ee61bf58656e00cac5155389af5827934567.tar.gz |
renamed unused variables
Diffstat (limited to 'git/objects/commit.py')
-rw-r--r-- | git/objects/commit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/commit.py b/git/objects/commit.py index 916a1081..b3b02f9f 100644 --- a/git/objects/commit.py +++ b/git/objects/commit.py @@ -140,7 +140,7 @@ class Commit(base.Object, Iterable, Diffable, Traversable, Serializable): def _set_cache_(self, attr): if attr in Commit.__slots__: # read the data in a chunk, its faster - then provide a file wrapper - binsha, typename, self.size, stream = self.repo.odb.stream(self.binsha) # @UnusedVariable + _binsha, _typename, self.size, stream = self.repo.odb.stream(self.binsha) self._deserialize(BytesIO(stream.read())) else: super(Commit, self)._set_cache_(attr) |