From c8b49d37be8c4aabb2d5896708f9dff91ffae368 Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Fri, 22 Jun 2018 16:08:27 +0200 Subject: [lint] Fix incorrect and inconsistent whitespace Adjust whitespace to be consistent with the rest of the library. --- discord/client.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'discord/client.py') diff --git a/discord/client.py b/discord/client.py index 440b5be3..7f99252b 100644 --- a/discord/client.py +++ b/discord/client.py @@ -369,10 +369,8 @@ class Client: await self.ws.poll_event() except ResumeWebSocket: log.info('Got a request to RESUME the websocket.') - coro = DiscordWebSocket.from_client(self, shard_id=self.shard_id, - session=self.ws.session_id, - sequence=self.ws.sequence, - resume=True) + coro = DiscordWebSocket.from_client(self, shard_id=self.shard_id, session=self.ws.session_id, + sequence=self.ws.sequence, resume=True) self.ws = await asyncio.wait_for(coro, timeout=180.0, loop=self.loop) async def connect(self, *, reconnect=True): -- cgit v1.2.3