aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands/bot.py
diff options
context:
space:
mode:
authorHornwitser <[email protected]>2018-06-22 15:59:12 +0200
committerRapptz <[email protected]>2018-08-22 21:43:52 -0400
commit3679819c5351dc839b6611462a169e68bb02dd4e (patch)
tree1a6c8674998f1d05828d5f5b8550f536c3720844 /discord/ext/commands/bot.py
parent[lint] Remove unused variables (diff)
downloaddiscord.py-3679819c5351dc839b6611462a169e68bb02dd4e.tar.xz
discord.py-3679819c5351dc839b6611462a169e68bb02dd4e.zip
[lint] Remove unnecessary lambdas
Lambdas of the form `lambda x: func(x)` are redundant.
Diffstat (limited to 'discord/ext/commands/bot.py')
-rw-r--r--discord/ext/commands/bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py
index 71ec5189..2dd22772 100644
--- a/discord/ext/commands/bot.py
+++ b/discord/ext/commands/bot.py
@@ -137,7 +137,7 @@ async def _default_help_command(ctx, *commands : str):
pages = await bot.formatter.format_help_for(ctx, command)
if bot.pm_help is None:
- characters = sum(map(lambda l: len(l), pages))
+ characters = sum(map(len, pages))
# modify destination based on length of pages.
if characters > 1000:
destination = ctx.message.author