uwsgidecorators.pyi 263 B

1234567
  1. from typing import Callable, TypeVar
  2. TCallable = TypeVar("TCallable", bound=Callable[..., object])
  3. class filemon:
  4. def __init__(self, fsobj: str, *, signum: int = ..., target: str = ...) -> None: ...
  5. def __call__(self, func: TCallable) -> TCallable: ...