Voice et bot modif

This commit is contained in:
pi 2026-06-16 17:09:34 +00:00
parent 189d56026b
commit 7333a22bcd
10774 changed files with 634644 additions and 933308 deletions

View file

@ -24,7 +24,8 @@ Then you can use `file_sender` like this:
import types
import warnings
from typing import Any, Awaitable, Callable, Dict, Tuple
from collections.abc import Awaitable, Callable
from typing import Any
from .abc import AbstractStreamWriter
from .payload import Payload, payload_type
@ -36,8 +37,8 @@ class _stream_wrapper:
def __init__(
self,
coro: Callable[..., Awaitable[None]],
args: Tuple[Any, ...],
kwargs: Dict[str, Any],
args: tuple[Any, ...],
kwargs: dict[str, Any],
) -> None:
self.coro = types.coroutine(coro)
self.args = args