Quizard/utils/types.py

7 lines
146 B
Python

from typing import TypeVar
C = TypeVar("C", default=str)
V = TypeVar("V", default=str)
Q = TypeVar("Q", default=str)
A = TypeVar("A", default=Q)