Like :attr:`url` but without the query string.
(self)
| 211 | |
| 212 | @cached_property |
| 213 | def base_url(self) -> str: |
| 214 | """Like :attr:`url` but without the query string.""" |
| 215 | return get_current_url(self.scheme, self.host, self.root_path, self.path) |
| 216 | |
| 217 | @cached_property |
| 218 | def root_url(self) -> str: |
nothing calls this directly
no test coverage detected