diff options
| author | Rapptz <[email protected]> | 2017-04-22 04:50:31 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-04-22 04:50:31 -0400 |
| commit | 1519a6fefaf9f6cc16afd990a5d0b07762861f13 (patch) | |
| tree | 92b65a4b54e1f23c0fc80d68cf8d177b5c971e0d /discord/client.py | |
| parent | Fix NameError in Role.edit when moving roles. (diff) | |
| download | discord.py-1519a6fefaf9f6cc16afd990a5d0b07762861f13.tar.xz discord.py-1519a6fefaf9f6cc16afd990a5d0b07762861f13.zip | |
Fix some linting errors.
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 2 |
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 |