File: typedefs.py

package info (click to toggle)
aiohttp-jinja2 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 264 kB
  • sloc: python: 884; makefile: 182
file content (4 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (2)
1
2
3
4
from typing import Callable, Iterable, Mapping, Tuple, Union

Filter = Callable[..., str]
Filters = Union[Iterable[Tuple[str, Filter]], Mapping[str, Filter]]