Fix some linting errors.

This commit is contained in:
Rapptz
2017-04-22 04:50:31 -04:00
parent c30ab8a3e5
commit 1519a6fefa
2 changed files with 2 additions and 5 deletions

View File

@ -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