Skip to content

Commit

Permalink
Update singer_sdk/authenticators.py
Browse files Browse the repository at this point in the history
Co-authored-by: Will Da Silva <[email protected]>
  • Loading branch information
edgarrmondragon and WillDaSilva authored Aug 24, 2022
1 parent dd38179 commit 79c70e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions singer_sdk/authenticators.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def authenticate_request(self, request: requests.Request) -> None:
.. _request object:
https://requests.readthedocs.io/en/latest/api/#requests.Request
"""
request.headers.update(self.auth_headers or {})
request.params.update(self.auth_params or {})
request.headers.update(self.auth_headers)
request.params.update(self.auth_params)


class SimpleAuthenticator(APIAuthenticatorBase):
Expand Down

0 comments on commit 79c70e3

Please sign in to comment.