diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-05-28 21:40:27 +0800 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-05-28 21:40:27 +0800 |
commit | 69ca329f6015301e289fcbb3c021e430c1bdfa81 (patch) | |
tree | 62123d4c88991371b1ead572b35c668215bc8833 /git/index/base.py | |
parent | 9c6209f12e78218632319620da066c99d6f771d8 (diff) | |
download | gitpython-69ca329f6015301e289fcbb3c021e430c1bdfa81.tar.gz |
Fix flake8 errors
Diffstat (limited to 'git/index/base.py')
-rw-r--r-- | git/index/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/index/base.py b/git/index/base.py index 2569e3d7..46974239 100644 --- a/git/index/base.py +++ b/git/index/base.py @@ -463,8 +463,8 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable): for stage, blob in self.iter_blobs(is_unmerged_blob): path_map.setdefault(blob.path, []).append((stage, blob)) # END for each unmerged blob - for l in path_map.values(): - l.sort() + for line in path_map.values(): + line.sort() return path_map @classmethod |