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
parent
commit
0539dd9cd3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      fastapi/security/oauth2.py

2
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__

Loading…
Cancel
Save