(self, file: MypyFile)
| 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 = [] |
| 845 | for plugin in self._plugins: |
| 846 | deps.extend(plugin.get_additional_deps(file)) |
| 847 | return deps |
| 848 | |
| 849 | def get_type_analyze_hook(self, fullname: str) -> Callable[[AnalyzeTypeContext], Type] | None: |
| 850 | # Micro-optimization: Inline iteration over plugins |
nothing calls this directly
no test coverage detected