diff options
author | ptmcg <ptmcg@austin.rr.com> | 2020-06-27 10:22:43 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2020-06-27 10:22:43 -0500 |
commit | 837586497a7ebc73aa99f72b9b09701052342da2 (patch) | |
tree | 31a73a01d01438eac52e7c99326b26ecdce7d3c1 | |
parent | 20dfaac6b80ad42851d82f9d2be376e098f0a5ba (diff) | |
download | pyparsing-git-837586497a7ebc73aa99f72b9b09701052342da2.tar.gz |
Blacken test_examples.py
-rw-r--r-- | tests/test_examples.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_examples.py b/tests/test_examples.py index 0886950..40b8866 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -8,7 +8,7 @@ import unittest class TestExamples(unittest.TestCase): def _run(self, name): mod = import_module("examples." + name) - getattr(mod, 'main', lambda *args, **kwargs: None)() + getattr(mod, "main", lambda *args, **kwargs: None)() def test_numerics(self): self._run("numerics") |