Skip to content

Commit

Permalink
fix pyright fail
Browse files Browse the repository at this point in the history
  • Loading branch information
dianagudu committed Aug 17, 2022
1 parent b200e9c commit ae001b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flaat/access_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class AccessTokenInfo:
""" Infos about the verification of the JWT.
If set to `None`, then the JWT data is unverified."""

def __init__(self, complete_decode, verification=Optional[dict]):
def __init__(self, complete_decode, verification):
self.header = complete_decode.get("header", {})
self.body = complete_decode.get("payload", {})
self.signature = _base64_url_encode(complete_decode.get("signature", b""))
Expand Down

0 comments on commit ae001b8

Please sign in to comment.