diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2020-10-11 23:39:23 -0500 |
---|---|---|
committer | Paul McGuire <ptmcg@users.noreply.github.com> | 2020-10-11 23:39:23 -0500 |
commit | 22027ba6256c8a12b08379c790875123f6a20e80 (patch) | |
tree | 9fa4d318cdb3c706554365821e11fd7b1575b743 | |
parent | 34be5a22a881b5a39788a955efba49e55bde7a84 (diff) | |
download | pyparsing-git-22027ba6256c8a12b08379c790875123f6a20e80.tar.gz |
There will be black
-rw-r--r-- | examples/test_bibparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test_bibparse.py b/examples/test_bibparse.py index 908381b..9857ab4 100644 --- a/examples/test_bibparse.py +++ b/examples/test_bibparse.py @@ -66,7 +66,7 @@ class TestBibparse(unittest.TestCase): ) for obj in (bp.quoted_string, bp.string, bp.field_value): self.assertEqual([], obj.parseString('""').asList()) - self.assertEqual( "a string", obj.parseString('"a string"')[0]) + self.assertEqual("a string", obj.parseString('"a string"')[0]) self.assertEqual( ["a ", ["nested"], "string"], obj.parseString('"a {nested} string"').asList(), |