diff options
| author | Hornwitser <[email protected]> | 2018-06-22 15:59:12 +0200 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-08-22 21:43:52 -0400 |
| commit | 3679819c5351dc839b6611462a169e68bb02dd4e (patch) | |
| tree | 1a6c8674998f1d05828d5f5b8550f536c3720844 /discord/calls.py | |
| parent | [lint] Remove unused variables (diff) | |
| download | discord.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/calls.py')
| -rw-r--r-- | discord/calls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/calls.py b/discord/calls.py index 0f340742..bbffa7da 100644 --- a/discord/calls.py +++ b/discord/calls.py @@ -110,7 +110,7 @@ class GroupCall: lookup = {u.id: u for u in self.call.channel.recipients} me = self.call.channel.me lookup[me.id] = me - self.ringing = list(filter(None, map(lambda i: lookup.get(i), kwargs.get('ringing', [])))) + self.ringing = list(filter(None, map(lookup.get, kwargs.get('ringing', [])))) def _update_voice_state(self, data): user_id = int(data['user_id']) |