Skip to content

Commit 3f5b4f3

Browse files
committed
Add compatibility for python 3.9
1 parent 7c95349 commit 3f5b4f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_resource_type.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ class TestExtension(Extension):
7474
"urn:ietf:params:scim:schemas:extension:Test:1.0:User"
7575
]
7676

77-
test: str | None = None
78-
test2: list[str] | None = None
77+
test: Union[str, None] = None
78+
test2: Union[list[str], None] = None
7979

8080
enterprise_user_rt = ResourceType.from_resource(
8181
User[Union[EnterpriseUser, TestExtension]]

0 commit comments

Comments
 (0)