Refactor: Small changes related to typing

This commit is contained in:
EntireMusic 2024-10-05 11:47:04 +03:00
parent d58fa32827
commit a91f1526ca

View File

@ -6,13 +6,11 @@ import pathlib
import re import re
import typing import typing
from io import BytesIO from io import BytesIO
from typing import List, Any, Dict
from ..crypto import AES from ..crypto import AES
from .. import utils, helpers, hints from .. import utils, helpers, hints
from ..tl import types, functions, custom from ..tl import types, functions, custom
from ..tl.types import MessageEmpty, Message, MessageService
try: try:
import PIL import PIL
@ -135,7 +133,7 @@ class UploadMethods:
comment_to: 'typing.Union[int, types.Message]' = None, comment_to: 'typing.Union[int, types.Message]' = None,
ttl: int = None, ttl: int = None,
nosound_video: bool = None, nosound_video: bool = None,
**kwargs) -> list[Any] | Any: **kwargs) -> list[typing.Any] | typing.Any:
""" """
Sends message with the given file to the specified entity. Sends message with the given file to the specified entity.