(
cls,
project_directory, # type: str
config, # type: Any
)
| 83 | class Plugin(object): |
| 84 | @classmethod |
| 85 | def load( |
| 86 | cls, |
| 87 | project_directory, # type: str |
| 88 | config, # type: Any |
| 89 | ): |
| 90 | # type: (...) -> None |
| 91 | assert os.path.isfile(os.path.join(project_directory, "pyproject.toml")) |
| 92 | assert config is None |
| 93 | return None |
| 94 | |
| 95 | config = write_config( |
| 96 | dedent( |
no test coverage detected