Read ``__match_args__`` without tripping static attribute checks.
(cls: type)
| 532 | # __match_args__ |
| 533 | # --------------------------------------------------------------------------- |
| 534 | def _match_args(cls: type) -> object: |
| 535 | """Read ``__match_args__`` without tripping static attribute checks.""" |
| 536 | return getattr(cls, "__match_args__") |
| 537 | |
| 538 | |
| 539 | class TestMatchArgs: |
no outgoing calls
no test coverage detected