diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-10-31 21:10:28 -0700 |
---|---|---|
committer | Paul McGuire <ptmcg@users.noreply.github.com> | 2019-10-31 23:10:28 -0500 |
commit | 53d1b4a6f48a53c4c4ec4ac7031362b691c0366d (patch) | |
tree | 088ad3cf3561b78a00af4fb2fd474f4a2b8ca70c /tests/test_examples.py | |
parent | 41752aa52cc97c710474bb2972cceab057b52ad4 (diff) | |
download | pyparsing-git-53d1b4a6f48a53c4c4ec4ac7031362b691c0366d.tar.gz |
Blacken the project (#141)
Diffstat (limited to 'tests/test_examples.py')
-rw-r--r-- | tests/test_examples.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_examples.py b/tests/test_examples.py index c58640f..077c617 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -6,9 +6,8 @@ import unittest class TestExamples(unittest.TestCase): - def _run(self, name): - import_module('examples.'+name) + import_module("examples." + name) def test_numerics(self): self._run("numerics") @@ -30,4 +29,3 @@ class TestExamples(unittest.TestCase): def test_eval_arith(self): self._run("eval_arith") - |