Skip to content

Commit dea7d9e

Browse files
committed
Fix for changed BW SDK call
1 parent 99e2ac5 commit dea7d9e

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)