Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion fastapi_oauth20/oauth20.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import abc
import json

from abc import ABC
from typing import Any, Literal, cast
from urllib.parse import urlencode

Expand All @@ -17,7 +18,7 @@
)


class OAuth20Base:
class OAuth20Base(ABC):
def __init__(
self,
client_id: str,
Expand Down