Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

#110 - change oauth endpoint description #313

Merged
merged 1 commit into from
Mar 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fidesops/api/v1/endpoints/oauth_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def acquire_access_token(
form_data: OAuth2ClientCredentialsRequestForm = Depends(),
db: Session = Depends(get_db),
) -> AccessToken:
"""Given a set of credentials, returns an access token if they are correct. Raises 401
"""Returns an access token if given credentials are correct, raises 401
exception if not"""

basic_credentials = await HTTPBasic(auto_error=False)(request)
Expand Down