(msg, text, button=None, wait=None)
| 233 | # Ask Doubt on telegram @KingVJ01 |
| 234 | |
| 235 | async def msg_edit(msg, text, button=None, wait=None): |
| 236 | try: |
| 237 | return await msg.edit(text, reply_markup=button) |
| 238 | except MessageNotModified: |
| 239 | pass |
| 240 | except FloodWait as e: |
| 241 | if wait: |
| 242 | await asyncio.sleep(e.value) |
| 243 | return await msg_edit(msg, text, button, wait) |
| 244 | |
| 245 | # Don't Remove Credit Tg - @VJ_Botz |
| 246 | # Subscribe YouTube Channel For Amazing Bot https://youtube.com/@Tech_VJ |
no outgoing calls
no test coverage detected