Bakalarska_praca/private_gpt/utils/typing.py

6 lines
79 B
Python
Raw Normal View History

2024-09-27 16:52:16 +00:00
from typing import TypeVar
T = TypeVar("T")
K = TypeVar("K")
V = TypeVar("V")