Release/v0.5.0 #8

Merged
rus07tam merged 20 commits from release/v0.5.0 into main 2025-11-24 16:28:03 +03:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit a392685506 - Show all commits

View file

@ -1,6 +1,8 @@
from __future__ import annotations
from typing import Generic, NamedTuple, TypeVar
from typing import Generic, TypeVar
from typing_extensions import NamedTuple
from .event import Event
from .filter import Filter

View file

@ -1,4 +1,6 @@
from typing import Generic, NamedTuple, Protocol, TypeVar
from typing import Generic, Protocol, TypeVar
from typing_extensions import NamedTuple
T = TypeVar("T")
R_co = TypeVar("R_co", covariant=True)