КА
Size: a a a
КА
КА
F🍭
F🍭
⟁ᴡ
⟁ᴡ
from telethon.tl import functions
async for d in client.iter_dialogs():
if d.is_group and not d.is_channel:
if d.entity.migrated_to:
await client(
functions.messages.DeleteHistoryRequest(
d.input_entity.chat_id,
client.get_messages(d.input_entity)[0].id,
False,
)
)
TypeError: 'coroutine' object is not subscriptable
⟁ᴡ
⟁ᴡ
from telethon.tl import functions
async for d in client.iter_dialogs():
if d.is_group and not d.is_channel:
if d.entity.migrated_to:
await client(
functions.messages.DeleteHistoryRequest(
d.input_entity.chat_id,
await client.get_messages(d.input_entity)[0].id,
False,
)
)
⟁ᴡ
D[
КА
КА
КА
КА
F🍭
КА
д
from telethon.tl import functions
async for d in client.iter_dialogs():
if d.is_group and not d.is_channel:
if d.entity.migrated_to:
await client(
functions.messages.DeleteHistoryRequest(
d.input_entity.chat_id,
await client.get_messages(d.input_entity)[0].id,
False,
)
)
КА
D[