(items: list[Any])
| 28 | |
| 29 | |
| 30 | def is_list_of_setuptools_extension(items: list[Any]) -> TypeGuard[list[Extension]]: |
| 31 | return all(isinstance(item, Extension) for item in items) |
| 32 | |
| 33 | |
| 34 | def find_package_data(base: str, globs: list[str], root: str = "mypy") -> list[str]: |
no test coverage detected
searching dependent graphs…