ChaterJee 0.1.8__tar.gz → 0.1.9__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.1.8 → chaterjee-0.1.9}/ChaterJee/ChaterJee.py +2 -1
- {chaterjee-0.1.8 → chaterjee-0.1.9}/ChaterJee.egg-info/PKG-INFO +1 -1
- {chaterjee-0.1.8 → chaterjee-0.1.9}/PKG-INFO +1 -1
- {chaterjee-0.1.8 → chaterjee-0.1.9}/setup.py +1 -1
- {chaterjee-0.1.8 → chaterjee-0.1.9}/ChaterJee/__init__.py +0 -0
- {chaterjee-0.1.8 → chaterjee-0.1.9}/ChaterJee.egg-info/SOURCES.txt +0 -0
- {chaterjee-0.1.8 → chaterjee-0.1.9}/ChaterJee.egg-info/dependency_links.txt +0 -0
- {chaterjee-0.1.8 → chaterjee-0.1.9}/ChaterJee.egg-info/requires.txt +0 -0
- {chaterjee-0.1.8 → chaterjee-0.1.9}/ChaterJee.egg-info/top_level.txt +0 -0
- {chaterjee-0.1.8 → chaterjee-0.1.9}/README.md +0 -0
- {chaterjee-0.1.8 → chaterjee-0.1.9}/setup.cfg +0 -0
@@ -237,7 +237,7 @@ class ChatLogs:
|
|
237
237
|
jobs = json.load(ffr)
|
238
238
|
self.jobs = jobs
|
239
239
|
|
240
|
-
reply_keyboard = [[f'{job}'] for job in list(jobs.keys())]
|
240
|
+
reply_keyboard = [[f'{job}'] for job in list(self.jobs.keys())]
|
241
241
|
msg = await update.message.reply_text("Select a job to get updates on",\
|
242
242
|
reply_markup=ReplyKeyboardMarkup(reply_keyboard, one_time_keyboard=True, input_field_placeholder="Select the job."\
|
243
243
|
),\
|
@@ -246,6 +246,7 @@ class ChatLogs:
|
|
246
246
|
return 0
|
247
247
|
|
248
248
|
async def StatJobs(self, update: Update, context: ContextTypes.DEFAULT_TYPE):
|
249
|
+
print("I'm inside StatJobs")
|
249
250
|
job_name = update.message.text
|
250
251
|
|
251
252
|
jobs_file = self.home / ".data" / "JOB_status.json"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|