9 lines
192 B
Python
9 lines
192 B
Python
"""Protocol for mixins in order for type checkers to work correctly."""
|
|
|
|
from typing import Protocol
|
|
|
|
|
|
class EkilexAPIBase(Protocol):
|
|
api_key: str
|
|
headers: dict[str, str]
|
|
url: str
|