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)