yt-local/python/attr/filters.pyi
2019-02-16 23:41:52 -08:00

6 lines
189 B
Python

from typing import Union
from . import Attribute, _FilterType
def include(*what: Union[type, Attribute]) -> _FilterType: ...
def exclude(*what: Union[type, Attribute]) -> _FilterType: ...