From 1695d96664cb5a543a163ecfa4d382ade50ea436 Mon Sep 17 00:00:00 2001 From: Zaid Date: Mon, 8 Jul 2024 00:15:49 +0300 Subject: [PATCH] fix --- pyproject.toml | 2 +- tgram/__init__.py | 2 +- tgram/types.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bd05721..430c0ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tgram" -version = "1.10.2" +version = "1.10.3" authors = [ { name="ZAID", email="me@zaid.pro" }, ] diff --git a/tgram/__init__.py b/tgram/__init__.py index dff512a..84f22d0 100644 --- a/tgram/__init__.py +++ b/tgram/__init__.py @@ -1,5 +1,5 @@ __all__ = ["types", "TgBot", "handlers", "filters"] -__version__ = "1.10.2" +__version__ = "1.10.3" __author__ = "Zaid" __copyright__ = "Copyright (C) 2024-present Zaid " diff --git a/tgram/types.py b/tgram/types.py index ed85d3c..3f44df4 100644 --- a/tgram/types.py +++ b/tgram/types.py @@ -7359,7 +7359,7 @@ def __init__( invoice_payload: "str", telegram_payment_charge_id: "str", provider_payment_charge_id: "str" = None, - me: tgram.TgBot = None, + me: "tgram.TgBot" = None, json: "dict" = None, ) -> None: super().__init__(me=me, json=json)