Fix FilterType

This commit is contained in:
Jahongir Qurbonov 2024-08-31 19:42:35 +05:00
parent c3c5e212b7
commit 34c4845909

View File

@ -5,7 +5,7 @@ from typing import Awaitable, TypeAlias
from ..event import Event
FilterType: TypeAlias = Callable[[Event], bool | Awaitable[bool]] | "Combinable"
FilterType: TypeAlias = "Callable[[Event], bool | Awaitable[bool]] | Combinable"
class Combinable(abc.ABC):