From 62d3299471b7b4229ae63e21e9d45ef7efde4348 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 3 Jun 2020 22:46:16 -0700 Subject: reformat python code with black --- tests/test_djvu_parse.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tests/test_djvu_parse.py') diff --git a/tests/test_djvu_parse.py b/tests/test_djvu_parse.py index abf5a4c..1f23de2 100644 --- a/tests/test_djvu_parse.py +++ b/tests/test_djvu_parse.py @@ -1,4 +1,3 @@ - import io from fatcat_scholar.djvu import djvu_extract_leaf_texts @@ -6,10 +5,10 @@ from fatcat_scholar.djvu import djvu_extract_leaf_texts def test_djvu_extract_leaf_texts(): # https://archive.org/details/ERIC_ED441501 - with open('tests/files/ERIC_ED441501_djvu.xml', 'r') as f: + with open("tests/files/ERIC_ED441501_djvu.xml", "r") as f: blob = f.read() - leaves = djvu_extract_leaf_texts(io.StringIO(blob), [3,6]) + leaves = djvu_extract_leaf_texts(io.StringIO(blob), [3, 6]) assert 3 in leaves assert 6 in leaves assert "2. Original cataloging tools" in leaves[3] -- cgit v1.2.3