ChaterJee 0.3.9__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {chaterjee-0.3.9 → chaterjee-0.4.1}/ChaterJee/ChaterJee.py +4 -2
- {chaterjee-0.3.9 → chaterjee-0.4.1}/ChaterJee.egg-info/PKG-INFO +1 -1
- {chaterjee-0.3.9 → chaterjee-0.4.1}/PKG-INFO +1 -1
- {chaterjee-0.3.9 → chaterjee-0.4.1}/setup.py +1 -1
- {chaterjee-0.3.9 → chaterjee-0.4.1}/ChaterJee/__init__.py +0 -0
- {chaterjee-0.3.9 → chaterjee-0.4.1}/ChaterJee.egg-info/SOURCES.txt +0 -0
- {chaterjee-0.3.9 → chaterjee-0.4.1}/ChaterJee.egg-info/dependency_links.txt +0 -0
- {chaterjee-0.3.9 → chaterjee-0.4.1}/ChaterJee.egg-info/requires.txt +0 -0
- {chaterjee-0.3.9 → chaterjee-0.4.1}/ChaterJee.egg-info/top_level.txt +0 -0
- {chaterjee-0.3.9 → chaterjee-0.4.1}/README.md +0 -0
- {chaterjee-0.3.9 → chaterjee-0.4.1}/setup.cfg +0 -0
@@ -52,8 +52,8 @@ class ChatLogs:
|
|
52
52
|
start_handler = CommandHandler('start', self.start)
|
53
53
|
application.add_handler(start_handler)
|
54
54
|
|
55
|
-
fEdit_handler = CommandHandler('edit', self.EditorBabu)
|
56
|
-
application.add_handler(fEdit_handler)
|
55
|
+
#fEdit_handler = CommandHandler('edit', self.EditorBabu)
|
56
|
+
#application.add_handler(fEdit_handler)
|
57
57
|
|
58
58
|
#cmd_handler = CommandHandler('sh', self.commands)
|
59
59
|
#application.add_handler(cmd_handler)
|
@@ -252,6 +252,7 @@ class ChatLogs:
|
|
252
252
|
async def SendEditButton(self, update: Update, context: ContextTypes.DEFAULT_TYPE):
|
253
253
|
self.smsID.append(update.message.message_id)
|
254
254
|
file_name = update.message.text[6:]
|
255
|
+
print(file_name)
|
255
256
|
extender = f"?variables={encoded_params}&fileNAME={file_name}"
|
256
257
|
await context.bot.sendChatAction(chat_id=self.CHATID, action="typing")
|
257
258
|
msg = await update.message.reply_text(
|
@@ -264,6 +265,7 @@ class ChatLogs:
|
|
264
265
|
),
|
265
266
|
)
|
266
267
|
self.smsID.append(msg.message_id)
|
268
|
+
return ConversationHandler.END
|
267
269
|
|
268
270
|
async def web_app_data(self, update: Update, context: ContextTypes.DEFAULT_TYPE) -> None :
|
269
271
|
data = json.loads(update.effective_message.web_app_data.data)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|