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/test | |
| parent | 9c6209f12e78218632319620da066c99d6f771d8 (diff) | |
| download | gitpython-69ca329f6015301e289fcbb3c021e430c1bdfa81.tar.gz | |
Fix flake8 errors
Diffstat (limited to 'git/test')
| -rw-r--r-- | git/test/test_index.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py index 3575348a..ce14537a 100644 --- a/git/test/test_index.py +++ b/git/test/test_index.py @@ -212,7 +212,7 @@ class TestIndex(TestBase):          assert unmerged_blob_map          # pick the first blob at the first stage we find and use it as resolved version -        three_way_index.resolve_blobs(l[0][1] for l in unmerged_blob_map.values()) +        three_way_index.resolve_blobs(line[0][1] for line in unmerged_blob_map.values())          tree = three_way_index.write_tree()          assert isinstance(tree, Tree)          num_blobs = 0  | 
