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_scrub.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tests/test_scrub.py') diff --git a/tests/test_scrub.py b/tests/test_scrub.py index 6c357ae..5929b65 100644 --- a/tests/test_scrub.py +++ b/tests/test_scrub.py @@ -1,4 +1,3 @@ - import pytest from fatcat_scholar.schema import * @@ -6,10 +5,12 @@ from fatcat_scholar.schema import * def test_scrub(): vectors = [ - ('“Please clean this piece… of text„', '"Please clean this piece... of text"'), + ( + "“Please clean this piece… of text„", + '"Please clean this piece... of text"', + ), ("blah", "blah"), ] for raw, fixed in vectors: assert fixed == scrub_text(raw) - -- cgit v1.2.3