Captain Ezio commited on
Commit
33cdd4e
Β·
1 Parent(s): b857acc

Update start.py

Browse files
Files changed (1) hide show
  1. Powers/plugins/start.py +5 -5
Powers/plugins/start.py CHANGED
@@ -270,14 +270,14 @@ async def give_curr_info(c: Gojo, q: CallbackQuery):
270
  start = time()
271
  up = strftime("%Hh %Mm %Ss", gmtime(time() - UPTIME))
272
  x = await c.send_message(q.message.chat.id, "Pinging..")
273
- await x.delete()
274
  delta_ping = time() - start
 
275
  txt = f"""
276
- πŸ€– Bot's version : {VERSION}
277
- 🐍 Python's version : {PYTHON_VERSION}
 
 
278
  πŸ”₯ Pyrogram's version : {PYROGRAM_VERSION}
279
- πŸ“ˆ Uptime : {up}
280
- πŸ“ Ping : {delta_ping * 1000:.3f} ms
281
  """
282
  await q.answer(txt, show_alert=True)
283
  return
 
270
  start = time()
271
  up = strftime("%Hh %Mm %Ss", gmtime(time() - UPTIME))
272
  x = await c.send_message(q.message.chat.id, "Pinging..")
 
273
  delta_ping = time() - start
274
+ await x.delete()
275
  txt = f"""
276
+ πŸ“ Ping : {delta_ping * 1000:.3f} ms
277
+ πŸ“ˆ Uptime : {up}
278
+ πŸ€– Bot's version: {VERSION}
279
+ 🐍 Python's version: {PYTHON_VERSION}
280
  πŸ”₯ Pyrogram's version : {PYROGRAM_VERSION}
 
 
281
  """
282
  await q.answer(txt, show_alert=True)
283
  return