Update chatbot/plugins/chat.py
Browse files- chatbot/plugins/chat.py +0 -2
chatbot/plugins/chat.py
CHANGED
@@ -89,7 +89,6 @@ async def startbot(client: Client, message: Message):
|
|
89 |
reply_markup=InlineKeyboardMarkup(buttons)
|
90 |
)
|
91 |
|
92 |
-
|
93 |
@Client.on_message(
|
94 |
filters.private
|
95 |
& filters.command(["ask"])
|
@@ -114,7 +113,6 @@ async def askcmd(client: Client, message: Message):
|
|
114 |
document="chat.txt",
|
115 |
disable_notification=True
|
116 |
)
|
117 |
-
await pro.delete()
|
118 |
os.remove("chat.txt")
|
119 |
else:
|
120 |
await message.reply_text(output, disable_web_page_preview=True)
|
|
|
89 |
reply_markup=InlineKeyboardMarkup(buttons)
|
90 |
)
|
91 |
|
|
|
92 |
@Client.on_message(
|
93 |
filters.private
|
94 |
& filters.command(["ask"])
|
|
|
113 |
document="chat.txt",
|
114 |
disable_notification=True
|
115 |
)
|
|
|
116 |
os.remove("chat.txt")
|
117 |
else:
|
118 |
await message.reply_text(output, disable_web_page_preview=True)
|