We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f37c03 commit 9cb2826Copy full SHA for 9cb2826
1 file changed
src/vaultwarden/models/bitwarden.py
@@ -206,7 +206,7 @@ class OrganizationUserDetails(BitwardenBaseModel):
206
Collections: list[UserCollection]
207
Groups: list | None = None
208
TwoFactorEnabled: bool
209
- Permissions: dict | None = None
+ Permissions: dict | None = None
210
211
@field_validator("OrganizationId")
212
@classmethod
@@ -225,7 +225,7 @@ def add_collections(self, collections: list[UUID]):
225
UserId=self.Id,
226
ReadOnly=False,
227
HidePasswords=False,
228
- Manage=False
+ Manage=False,
229
)
230
user.bitwarden_client = self.api_client
231
self.Collections.append(user)
0 commit comments