Initialize an :class:`.InvalidImplicitAuth` instance.
(self)
| 46 | """Indicate exceptions where an implicit auth type is used incorrectly.""" |
| 47 | |
| 48 | def __init__(self) -> None: |
| 49 | """Initialize an :class:`.InvalidImplicitAuth` instance.""" |
| 50 | super().__init__("Implicit authorization can only be used with installed apps.") |
| 51 | |
| 52 | |
| 53 | class InvalidURL(ClientException): |