Get the request path without query string.
(self)
| 117 | @property # pragma: no cover - interface |
| 118 | @abstractmethod |
| 119 | def path(self) -> str: |
| 120 | """Get the request path without query string.""" |
| 121 | raise NotImplementedError() |
| 122 | |
| 123 | |
| 124 | class ResponseAdapter: |
no outgoing calls
no test coverage detected