(scheme: str, host: str, script_root: str)
| 439 | |
| 440 | @staticmethod |
| 441 | def _make_base_url(scheme: str, host: str, script_root: str) -> str: |
| 442 | return urlunsplit((scheme, host, script_root, "", "")).rstrip("/") + "/" |
| 443 | |
| 444 | @property |
| 445 | def base_url(self) -> str: |
no outgoing calls
no test coverage detected