mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
fix SCIM linting error
This commit is contained in:
parent
62c43efa15
commit
721e1f6f53
2 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ async def get_users(
|
|||
)
|
||||
|
||||
# Convert to SCIM format
|
||||
scim_users = []
|
||||
scim_users: List[SCIMUser] = []
|
||||
for user in users:
|
||||
scim_user = await ScimTransformations.transform_litellm_user_to_scim_user(
|
||||
user=user
|
||||
|
|
|
@ -67,7 +67,7 @@ class SCIMListResponse(BaseModel):
|
|||
totalResults: int
|
||||
startIndex: Optional[int] = 1
|
||||
itemsPerPage: Optional[int] = 10
|
||||
Resources: List[Union[SCIMUser, SCIMGroup]]
|
||||
Resources: Union[List[SCIMUser], List[SCIMGroup]]
|
||||
|
||||
|
||||
# SCIM PATCH Operation Models
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue