(self, ctx: ReportConfigContext)
| 837 | plugin.set_modules(modules) |
| 838 | |
| 839 | def report_config_data(self, ctx: ReportConfigContext) -> Any: |
| 840 | config_data = [plugin.report_config_data(ctx) for plugin in self._plugins] |
| 841 | return config_data if any(x is not None for x in config_data) else None |
| 842 | |
| 843 | def get_additional_deps(self, file: MypyFile) -> list[tuple[int, str, int]]: |
| 844 | deps = [] |
nothing calls this directly
no test coverage detected