Skip to content

Commit 40bec7c

Browse files
committed
fix: typing issue with extensions
1 parent 0aee64e commit 40bec7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scim2_client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ def build_resource_models(
558558
extension = Extension.from_schema(schema_obj)
559559
extensions.append(extension)
560560
if extensions:
561-
model = model[tuple(extensions)]
561+
model = model[Union[tuple(extensions)]]
562562
resource_models.append(model)
563563

564564
return tuple(resource_models)

0 commit comments

Comments
 (0)