aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-04-22 04:50:31 -0400
committerRapptz <[email protected]>2017-04-22 04:50:31 -0400
commit1519a6fefaf9f6cc16afd990a5d0b07762861f13 (patch)
tree92b65a4b54e1f23c0fc80d68cf8d177b5c971e0d /discord/client.py
parentFix NameError in Role.edit when moving roles. (diff)
downloaddiscord.py-1519a6fefaf9f6cc16afd990a5d0b07762861f13.tar.xz
discord.py-1519a6fefaf9f6cc16afd990a5d0b07762861f13.zip
Fix some linting errors.
Diffstat (limited to 'discord/client.py')
-rw-r--r--discord/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py
index 95f71327..e1b2a798 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -329,7 +329,7 @@ class Client:
"""
log.info('logging in using static token')
- data = yield from self.http.static_login(token, bot=bot)
+ yield from self.http.static_login(token, bot=bot)
self.connection.is_bot = bot
@asyncio.coroutine