athphane / userbot

Unnecessary use of comprehension PYL-R1721
Performance
Major
5 months ago4 years old
Unnecessary use of a comprehension, use list(special_emojis_dict) instead.
36    "bb": {"emoji": "🏀", "help": "The special basketball emoji"},
37    "soccer": {"emoji": "⚽️", "help": "The special football emoji"},
38}
39special_emoji_commands = [x for x in special_emojis_dict]40
41
42@UserBot.on_message(filters.command(special_emoji_commands, ".") & filters.me)
Unnecessary use of a comprehension, use list(emojis) instead.
15    "earth": list("🌏🌍🌎🌎🌍🌏🌍🌎"),
16    "heart": list("❤️🧡💛💚💙💜🖤"),
17}
18emoji_commands = [x for x in emojis]19
20
21@UserBot.on_message(filters.command(emoji_commands, ".") & filters.me)