Skip to content

Commit

Permalink
Fixed number for telegram
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Apr 23, 2024
1 parent 8f6ac35 commit 65d995a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def delete_message(id: int, message: str):
:param message: str:
"""
id = int(id)
import nest_asyncio

nest_asyncio.apply()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def get_last_messages(id: int, limit=100):
:param limit: (Default value = 100)
"""
id = int(id)
import nest_asyncio

nest_asyncio.apply()
Expand Down
1 change: 1 addition & 0 deletions tiger/tools/communication/telegram/as_user/send_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def send_message(id: int, message: str) -> str:
:param message: str:
"""
id = int(id)
import nest_asyncio

nest_asyncio.apply()
Expand Down

0 comments on commit 65d995a

Please sign in to comment.