(self, arg: Markable)
| 343 | # the first match so it works out even if we break the rules. |
| 344 | @overload |
| 345 | def __call__(self, arg: Markable) -> Markable: # type: ignore[misc] |
| 346 | pass |
| 347 | |
| 348 | @overload |
| 349 | def __call__(self, *args: object, **kwargs: object) -> "MarkDecorator": |
nothing calls this directly
no test coverage detected