Выдает ошибку
RuntimeWarning: coroutine 'MessageMethods.send_message' was never awaited
client.send_message('me', 'Hello! Talking to you from Telethon')
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
Код
import os
import asyncio
import sys
import time
import socks
from telethon import TelegramClient, events, utils
session = os.environ.get('TG_SESSION', 'printer')
api_id =
api_hash = ''
proxy = socks.SOCKS5, '', 1080
# Create and start the client so we can make requests (we don't here)
client = TelegramClient(session, api_id, api_hash, proxy=proxy).start()
client.send_message('me', 'Hello! Talking to you from Telethon')
Как исправить?