Zxce3 / userbot

Re-defined variable from outer scope PYL-W0621
Anti-pattern
4 months ago8 months old
Redefining name 'app' from outer scope (line 1)
39
40# get user info and send it to message
41@app.on_message(filters.command("info", prefix) & filters.me)
42async def getUserInfo(app, msg):43    if msg.reply_to_message:
44        await msg.edit(f"**User info**\n\n**First name:** `{msg.reply_to_message.from_user.first_name}`\n**Last name:** `{msg.reply_to_message.from_user.last_name}`\n**Username:** `{msg.reply_to_message.from_user.username}`\n**User id:** `{msg.reply_to_message.from_user.id}`")
45    else:
Redefining name 'app' from outer scope (line 1)
28        await msg.edit("Reply to message")
29# get all id and send it to message
30@app.on_message(filters.command("allid", prefix) & filters.me)
31async def getAllId(app, msg):32    if msg.chat.type == "private":
33        await msg.edit("This is private chat")
34        return
Redefining name 'app' from outer scope (line 1)
21        await msg.edit(f"Chat id: `{msg.chat.id}`\nUser forward message id: `{msg.reply_to_message.forward_from_message_id}`")
22# get user id and send it to message
23@app.on_message(filters.command("uid", prefix) & filters.me)
24async def getUserId(app, msg):25    if msg.reply_to_message:
26        await msg.edit(f"User id: `{msg.reply_to_message.from_user.id}`")
27    else:
Redefining name 'app' from outer scope (line 1)
 4
 5# get group id and send it to message
 6@app.on_message(filters.command("id", prefix) & filters.me)
 7async def getGroupId(app, msg): 8    if msg.chat.type == "private":
 9        await msg.edit("This is private chat")
10        return
Redefining name 'app' from outer scope (line 1)
 5
 6# exec os command and send output to message
 7@app.on_message(filters.command(["exec",">"], prefix) & filters.me)
 8async def execCommand(app, msg): 9    if len(msg.command) < 2:
10        await msg.edit("Usage: `exec [command]`")
11        return