Skip to content

Commit 7610c60

Browse files
committed
fix type
1 parent 63e833a commit 7610c60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workos/types/api_keys/api_keys.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Literal, Optional
1+
from typing import Literal, Optional, Sequence
22

33
from workos.types.workos_model import WorkOSModel
44

@@ -15,6 +15,6 @@ class ApiKey(WorkOSModel):
1515
name: str
1616
obfuscated_value: str
1717
last_used_at: Optional[str] = None
18-
permissions: list[str]
18+
permissions: Sequence[str]
1919
created_at: str
2020
updated_at: str

0 commit comments

Comments
 (0)