Skip to content

Commit 1d93b95

Browse files
1PasswordSDKBotedif2008
authored andcommitted
Update core to version 143bddbd
1 parent f6bdb6b commit 1d93b95

File tree

6 files changed

+9
-2
lines changed

6 files changed

+9
-2
lines changed
15.2 KB
Binary file not shown.
3.87 KB
Binary file not shown.
-56 Bytes
Binary file not shown.
32.9 KB
Binary file not shown.
41.5 KB
Binary file not shown.

src/onepassword/vaults.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ class Vaults:
2121
def __init__(self, inner_client: InnerClient):
2222
self.inner_client = inner_client
2323

24-
async def list(self, params: Optional[VaultListParams] = None) -> List[VaultOverview]:
24+
async def list(
25+
self, params: Optional[VaultListParams] = None
26+
) -> List[VaultOverview]:
2527
"""
2628
List information about vaults that's configurable based on some input parameters.
2729
"""
@@ -31,7 +33,12 @@ async def list(self, params: Optional[VaultListParams] = None) -> List[VaultOver
3133
"clientId": self.inner_client.client_id,
3234
"parameters": {
3335
"name": "VaultsList",
34-
"parameters": {"params": params.model_dump(by_alias=True) if params else None},
36+
"parameters": {
37+
"params": (
38+
params.model_dump(
39+
by_alias=True) if params else None
40+
)
41+
},
3542
},
3643
}
3744
}

0 commit comments

Comments
 (0)