Skip to content

Commit

Permalink
Fix erroneous function call in refresh handler
Browse files Browse the repository at this point in the history
  • Loading branch information
mallport committed Jan 16, 2024
1 parent c2c9828 commit d47e937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dapla/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def fetch_google_credentials() -> Credentials:
token=token,
expiry=expiry,
token_uri="https://oauth2.googleapis.com/token",
refresh_handler=AuthClient.fetch_google_token(),
refresh_handler=AuthClient.fetch_google_token,
)
except AuthError as err:
err._print_warning()
Expand Down

0 comments on commit d47e937

Please sign in to comment.