diff --git a/fastapi_oauth20/oauth20.py b/fastapi_oauth20/oauth20.py index 149ac6f..2a1c551 100644 --- a/fastapi_oauth20/oauth20.py +++ b/fastapi_oauth20/oauth20.py @@ -3,6 +3,7 @@ import abc import json +from abc import ABC from typing import Any, Literal, cast from urllib.parse import urlencode @@ -17,7 +18,7 @@ ) -class OAuth20Base: +class OAuth20Base(ABC): def __init__( self, client_id: str,