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.
@@ -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"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ChaterJee
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Communicate your project updates via Telegram Bot!
5
5
  Author: Pallab Dutta
6
6
  Author-email: pallab9997@gmail.com
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ChaterJee
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Communicate your project updates via Telegram Bot!
5
5
  Author: Pallab Dutta
6
6
  Author-email: pallab9997@gmail.com
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='ChaterJee',
5
- version='0.1.8',
5
+ version='0.1.9',
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  'python-telegram-bot==20.7',
File without changes
File without changes