(client, message)
| 100 | |
| 101 | @Client.on_message(filters.private & filters.command('delcaption')) |
| 102 | async def delete_caption(client, message): |
| 103 | rkn = await message.reply_text("__**ᴘʟᴇᴀsᴇ ᴡᴀɪᴛ**__") |
| 104 | caption = await digital_botz.get_caption(message.from_user.id) |
| 105 | if not caption: |
| 106 | return await rkn.edit("__**😔 Yᴏᴜ Dᴏɴ'ᴛ Hᴀᴠᴇ Aɴy Cᴀᴩᴛɪᴏɴ**__") |
| 107 | await digital_botz.set_caption(message.from_user.id, caption=None) |
| 108 | await rkn.edit("__**❌️ Cᴀᴩᴛɪᴏɴ Dᴇʟᴇᴛᴇᴅ**__") |
| 109 | |
| 110 | @Client.on_message(filters.private & filters.command('seecaption')) |
| 111 | async def see_caption(client, message): |
nothing calls this directly
no test coverage detected