diff --git a/server/auth/auth_oauth.py b/server/auth/auth_oauth.py index efc79c30..f1e50504 100644 --- a/server/auth/auth_oauth.py +++ b/server/auth/auth_oauth.py @@ -24,7 +24,7 @@ except ModuleNotFoundError: class Tokens: """Simple class to represent the tokens that are saved/restored from the cookie""" - def __init__(self, access_token, id_token, refresh_token, expires_at): + def __init__(self, access_token, id_token, refresh_token, expires_at, **kwargs): self.access_token = access_token self.id_token = id_token self.refresh_token = refresh_token