Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash committed Jun 13, 2024
1 parent 5bde898 commit f3e0ea1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sources/helpers/rest_client/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ def build_access_token_request(self):
access_token_request_data={
"grant_type": "client_credentials",
},
client_id="test-client-id",
client_secret="test-client-secret",
client_id=cast(TSecretStrValue, "test-client-id"),
client_secret=cast(TSecretStrValue, "test-client-secret"),
)

response = rest_client.get(
Expand Down

0 comments on commit f3e0ea1

Please sign in to comment.