mpd-now-playable/stubs/aiocache/base.pyi

8 lines
153 B
Python

from typing import Generic, TypeVar
T = TypeVar("T")
class BaseCache(Generic[T]):
@staticmethod
def parse_uri_path(path: str) -> dict[str, str]: ...