Skip to content
This repository was archived by the owner on Jun 12, 2021. It is now read-only.

Commit dff8930

Browse files
committed
Got it all working again.
1 parent 326c8ed commit dff8930

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/oidcendpoint/jwt_token.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from typing import Any
12
from typing import Dict
23
from typing import List
34
from typing import Optional
@@ -14,7 +15,7 @@ class JWTToken(Token):
1415
def __init__(
1516
self,
1617
typ,
17-
black_list,
18+
black_list=None,
1819
keyjar=None,
1920
issuer=None,
2021
aud=None,
@@ -50,7 +51,7 @@ def __call__(
5051
uinfo: Dict,
5152
sinfo: Dict,
5253
*args,
53-
aud: Optional[List, str],
54+
aud: Optional[Any],
5455
**kwargs
5556
):
5657
"""

0 commit comments

Comments
 (0)