(self)
| 137 | |
| 138 | @property |
| 139 | def query_params(self) -> QueryParams: |
| 140 | if not hasattr(self, "_query_params"): # pragma: no branch |
| 141 | self._query_params = QueryParams(self.scope["query_string"]) |
| 142 | return self._query_params |
| 143 | |
| 144 | @property |
| 145 | def path_params(self) -> dict[str, Any]: |
nothing calls this directly
no test coverage detected