Skip to content

Commit

Permalink
Fix basic auth secrets filter
Browse files Browse the repository at this point in the history
  • Loading branch information
davidesner committed May 28, 2024
1 parent 91b9d23 commit 78abe40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-sync-actions/src/http_generic/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def __eq__(self, other):
])

def get_secrets(self):
return auth._basic_auth_str(self.username, self.password)
return [auth._basic_auth_str(self.username, self.password)]


class BearerToken(AuthMethodBase, AuthBase):
Expand Down

0 comments on commit 78abe40

Please sign in to comment.