mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-10 23:44:36 +00:00
Support 2FA in Bitwarden (#178)
This commit is contained in:
parent
6ea649d30b
commit
e8b42c9a4f
5 changed files with 113 additions and 48 deletions
|
@ -207,6 +207,11 @@ class BitwardenListItemsError(BitwardenBaseError):
|
|||
super().__init__(f"Error listing items in Bitwarden: {message}")
|
||||
|
||||
|
||||
class BitwardenTOTPError(BitwardenBaseError):
|
||||
def __init__(self, message: str) -> None:
|
||||
super().__init__(f"Error generating TOTP in Bitwarden: {message}")
|
||||
|
||||
|
||||
class BitwardenLogoutError(BitwardenBaseError):
|
||||
def __init__(self, message: str) -> None:
|
||||
super().__init__(f"Error logging out of Bitwarden: {message}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue