summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2020-06-27 10:22:43 -0500
committerptmcg <ptmcg@austin.rr.com>2020-06-27 10:22:43 -0500
commit837586497a7ebc73aa99f72b9b09701052342da2 (patch)
tree31a73a01d01438eac52e7c99326b26ecdce7d3c1
parent20dfaac6b80ad42851d82f9d2be376e098f0a5ba (diff)
downloadpyparsing-git-837586497a7ebc73aa99f72b9b09701052342da2.tar.gz
Blacken test_examples.py
-rw-r--r--tests/test_examples.py2
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")