6 lines
79 B
Python
6 lines
79 B
Python
|
from typing import TypeVar
|
||
|
|
||
|
T = TypeVar("T")
|
||
|
K = TypeVar("K")
|
||
|
V = TypeVar("V")
|