mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
5 lines
189 B
Python
5 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: ...
|