We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e7efe7 commit b7e498fCopy full SHA for b7e498f
tests/test_import.py
@@ -6,8 +6,8 @@
6
7
def test_imports():
8
try:
9
- package = importlib.import_module('parea')
+ package = importlib.import_module("parea")
10
for _, module_name, _ in pkgutil.iter_modules(package.__path__):
11
- importlib.import_module(f'parea.{module_name}')
+ importlib.import_module(f"parea.{module_name}")
12
except ImportError:
13
pytest.fail("Import failed", pytrace=False)
0 commit comments