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 cc5d9cb commit 9d4af05Copy full SHA for 9d4af05
1 file changed
‎importlib_resources/tests/test_files.py‎
@@ -163,7 +163,9 @@ def _compile_importlib(self):
163
sources = pathlib.Path(resources.__file__).parent
164
165
for source_path in sources.glob('**/*.py'):
166
- c_path = c_resources.joinpath(source_path.relative_to(sources)).with_suffix('.pyc')
+ c_path = c_resources.joinpath(source_path.relative_to(sources)).with_suffix(
167
+ '.pyc'
168
+ )
169
py_compile.compile(source_path, c_path)
170
self.fixtures.enter_context(import_helper.DirsOnSysPath(bin_site))
171
0 commit comments