(ctx: ClassDefContext)
| 15 | |
| 16 | |
| 17 | def add_extra_methods_hook(ctx: ClassDefContext) -> bool: |
| 18 | add_method(ctx, "foo_implicit", [], NoneType()) |
| 19 | return True |
| 20 | |
| 21 | |
| 22 | def plugin(version: str) -> type[AddOverrideMethodPlugin]: |
nothing calls this directly
no test coverage detected
searching dependent graphs…