SickGear/lib/attr/filters.pyi

6 lines
189 B
Python
Raw Normal View History

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