bazarr/libs/attr/filters.pyi

7 lines
215 B
Python
Raw Normal View History

2022-09-22 10:33:33 +00:00
from typing import Any, Union
from . import Attribute, _FilterType
def include(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...
def exclude(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...