OpenHome/venv/Lib/site-packages/attr/filters.pyi
2021-07-21 21:33:05 +02:00

8 lines
216 B
Python

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]: ...