(
self,
)
| 2750 | return Match.NONE, {} |
| 2751 | |
| 2752 | def _iter_low_priority_routes( |
| 2753 | self, |
| 2754 | ) -> Iterator[BaseRoute | _EffectiveRouteContext]: |
| 2755 | yield from self._low_priority_routes |
| 2756 | for route in self.routes: |
| 2757 | if isinstance(route, _IncludedRouter): |
| 2758 | yield from route.effective_low_priority_routes() |
| 2759 | |
| 2760 | def _match_low_priority( |
| 2761 | self, scope: Scope |
no test coverage detected