(token: str)
| 185 | |
| 186 | |
| 187 | def _apply_bearer(token: str) -> str: |
| 188 | return token.lower().startswith("bearer ") and token or f"Bearer {token}" |
| 189 | |
| 190 | |
| 191 | def _parse_basic_auth_scheme(headers: Dict[str, str], scheme: Any): |
no outgoing calls
no test coverage detected