Skip to content

Commit

Permalink
Update start.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SHABIN-K authored Oct 19, 2021
1 parent fe387f4 commit 43547cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ async def not_joined(client: Client, message: Message):
async def get_users(client: Bot, message: Message):
msg = await client.send_message(chat_id=message.chat.id, text="Counting Users....")
users = await full_userbase()
await msg.edit(f"{users} users are using this bot ")
await msg.edit(f"{len(users)} users are using this bot ")

@Bot.on_message(filters.private & filters.command('broadcast') & filters.user(ADMINS))
async def send_text(client: Bot, message: Message):
Expand Down

0 comments on commit 43547cb

Please sign in to comment.