From 69ca329f6015301e289fcbb3c021e430c1bdfa81 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 28 May 2020 21:40:27 +0800 Subject: Fix flake8 errors --- git/test/test_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git/test') 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 -- cgit v1.2.1