From 10f7f880008ae13ea173bdf912ce4d77d39bd0b5 Mon Sep 17 00:00:00 2001 From: Dylan Anthony Date: Fri, 19 Jul 2019 15:38:04 -0400 Subject: [PATCH] Obeyed flake8 --- socketio/asyncio_redis_manager.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/socketio/asyncio_redis_manager.py b/socketio/asyncio_redis_manager.py index e2c5558..21499c2 100644 --- a/socketio/asyncio_redis_manager.py +++ b/socketio/asyncio_redis_manager.py @@ -56,7 +56,9 @@ class AsyncRedisManager(AsyncPubSubManager): # pragma: no cover raise RuntimeError('Redis package is not installed ' '(Run "pip install aioredis" in your ' 'virtualenv).') - self.host, self.port, self.password, self.db, self.ssl = _parse_redis_url(url) + ( + self.host, self.port, self.password, self.db, self.ssl + ) = _parse_redis_url(url) self.pub = None self.sub = None super().__init__(channel=channel, write_only=write_only, logger=logger)