(self, arg: Markable)
| 395 | # the first match so it works out even if we break the rules. |
| 396 | @overload |
| 397 | def __call__(self, arg: Markable) -> Markable: # type: ignore[overload-overlap] |
| 398 | pass |
| 399 | |
| 400 | @overload |
| 401 | def __call__(self, *args: object, **kwargs: object) -> MarkDecorator: |
nothing calls this directly
no test coverage detected