(matcher: Matcher)
| 696 | |
| 697 | |
| 698 | def _is_matcher_v1(matcher: Matcher) -> TypeGuard[MatcherAPIv1]: |
| 699 | api_version = _get_matcher_api_version(matcher) |
| 700 | return api_version == 1 |
| 701 | |
| 702 | |
| 703 | def _is_matcher_v2(matcher: Matcher) -> TypeGuard[MatcherAPIv2]: |
no test coverage detected
searching dependent graphs…