Skip to content

Commit fe9fb24

Browse files
committed
Update typing for 3.8.
1 parent fa24743 commit fe9fb24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workos/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from __future__ import annotations
2-
from typing import TYPE_CHECKING, Protocol, Sequence
2+
from typing import TYPE_CHECKING, List, Protocol
33

44
import json
55
from typing import Any, Dict, Optional, Union, cast
@@ -27,7 +27,7 @@ class SessionModule(Protocol):
2727
session_data: str
2828
cookie_password: str
2929
jwks: PyJWKClient
30-
jwk_algorithms: Sequence[str]
30+
jwk_algorithms: List[str]
3131

3232
def __init__(
3333
self,

0 commit comments

Comments
 (0)