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 30402cf commit 3d850d0Copy full SHA for 3d850d0
src/semiwrap/makeplan.py
@@ -328,7 +328,10 @@ def _process_extension_module(
328
329
if subpackages:
330
pyi_elems = base_pyi_elems + ["__init__.pyi"]
331
- pyi_args = [pathlib.PurePath(*pyi_elems).as_posix(), OutputFile("__init__.pyi")]
+ pyi_args = [
332
+ pathlib.PurePath(*pyi_elems).as_posix(),
333
+ OutputFile("__init__.pyi"),
334
+ ]
335
for subpackage in subpackages:
336
pyi_elems = base_pyi_elems + [f"{subpackage}.pyi"]
337
pyi_args += [
0 commit comments