blob: b3ced307bca9c303e9eb9bd32183af29aa3ebaf3 (
plain) (
blame)
1
2
3
4
5
6
7
|
from typing import TypeVar, Generic, Any, TYPE_CHECKING, Awaitable, Callable, Optional
if TYPE_CHECKING:
from .rules import Rules
RulesT = TypeVar("RulesT", bound="Rules[Any]")
|