Browse Source
🔧 Fix Type hint of `auto_error` which does not need to be `Optional[bool]` (#4933)
pull/5075/merge
David Kim
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
fastapi/security/oauth2.py
|
|
@ -119,7 +119,7 @@ class OAuth2(SecurityBase): |
|
|
|
flows: Union[OAuthFlowsModel, Dict[str, Dict[str, Any]]] = OAuthFlowsModel(), |
|
|
|
scheme_name: Optional[str] = None, |
|
|
|
description: Optional[str] = None, |
|
|
|
auto_error: Optional[bool] = True |
|
|
|
auto_error: bool = True |
|
|
|
): |
|
|
|
self.model = OAuth2Model(flows=flows, description=description) |
|
|
|
self.scheme_name = scheme_name or self.__class__.__name__ |
|
|
|