diff --git a/languages/python/bitwarden_sdk/bitwarden_client.py b/languages/python/bitwarden_sdk/bitwarden_client.py index cb669a40e..b5ea48c44 100644 --- a/languages/python/bitwarden_sdk/bitwarden_client.py +++ b/languages/python/bitwarden_sdk/bitwarden_client.py @@ -12,9 +12,10 @@ def __init__(self, settings: ClientSettings = None): settings_json = json.dumps(settings.to_dict()) self.inner = bitwarden_py.BitwardenClient(settings_json) - def access_token_login(self, access_token: str): + def access_token_login(self, access_token: str, + state_file_path: str = None): self._run_command( - Command(access_token_login=AccessTokenLoginRequest(access_token)) + Command(access_token_login=AccessTokenLoginRequest(access_token, state_file_path)) ) def secrets(self):