distutils: Add some return types for setuptools to pass ANN201 (#12841)

This commit is contained in:
Avasam
2024-10-18 06:09:34 -04:00
committed by GitHub
parent c6affbb804
commit 81138321d9
3 changed files with 7 additions and 7 deletions

View File

@@ -32,7 +32,7 @@ class build_py(Command):
def find_all_modules(self): ...
def get_source_files(self): ...
def get_module_outfile(self, build_dir, package, module): ...
def get_outputs(self, include_bytecode: bool = True): ...
def get_outputs(self, include_bytecode: bool = True) -> list[str]: ...
def build_module(self, module, module_file, package): ...
def build_modules(self) -> None: ...
def build_packages(self) -> None: ...