kushalExplores's picture
Upload folder using huggingface_hub
53dbcc1 verified
import inspect
from collections.abc import Callable
from typing import Any, Protocol
class Dispatcher(Protocol):
def __call__(
self, command: Callable[..., Any], bound: inspect.BoundArguments, ignored: dict[str, Any], /
) -> Any: ...