(ctx: MethodSigContext)
| 19 | |
| 20 | |
| 21 | def my_hook(ctx: MethodSigContext) -> CallableType: |
| 22 | return ctx.default_signature.copy_modified( |
| 23 | ret_type=ctx.api.named_generic_type("builtins.int", []) |
| 24 | ) |
| 25 | |
| 26 | |
| 27 | def plugin(version: str) -> type[FullyQualifiedTestPlugin]: |
nothing calls this directly
no test coverage detected
searching dependent graphs…