(matcher: Matcher)
| 701 | |
| 702 | |
| 703 | def _is_matcher_v2(matcher: Matcher) -> TypeGuard[MatcherAPIv2]: |
| 704 | api_version = _get_matcher_api_version(matcher) |
| 705 | return api_version == 2 |
| 706 | |
| 707 | |
| 708 | def _is_sizable(value: Any) -> TypeGuard[Sized]: |
no test coverage detected
searching dependent graphs…