(reg: Plugins, options: dict[str, str])
| 28 | |
| 29 | # coverage passes the config's plugin options; this plugin takes none. |
| 30 | def coverage_init(reg: Plugins, options: dict[str, str]) -> None: # ruff:ignore[unused-function-argument] |
| 31 | reg.add_configurer(CapabilityPragmas()) |
| 32 | |
| 33 | |
| 34 | class CapabilityPragmas(CoveragePlugin): |
nothing calls this directly
no test coverage detected