Skip to content

Commit c67627a

Browse files
authored
Merge pull request #1147 from wnagele/fix_bitwarden_sdk_api
Fix for changed BW SDK call
2 parents a5daa96 + dea7d9e commit c67627a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

O365/utils/token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ def __init__(self, access_token: str, secret_id: str):
777777
raise Exception('Please install the bitwarden-sdk package to use this token backend.') from e
778778
super().__init__()
779779
self.client = BitwardenClient()
780-
self.client.access_token_login(access_token)
780+
self.client.auth().login_access_token(access_token)
781781
self.secret_id = secret_id
782782
self.secret = None
783783

0 commit comments

Comments
 (0)