From 1ad6cbd35c81ed0c808c9a37359b3521af96ea5b Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Thu, 20 Dec 2018 14:42:19 +0200 Subject: [PATCH] Happify lint. --- t/unit/transport/test_redis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/unit/transport/test_redis.py b/t/unit/transport/test_redis.py index 15e36b1d..55b2dc09 100644 --- a/t/unit/transport/test_redis.py +++ b/t/unit/transport/test_redis.py @@ -1344,7 +1344,7 @@ class test_RedisSentinel: def test_getting_master_from_sentinel(self): with patch('redis.sentinel.Sentinel') as patched: connection = Connection( - 'sentinel://localhost:65534/;sentinel://localhost:65535/;sentinel://localhost:65536/;', # noqa: E501 + 'sentinel://localhost:65534/;sentinel://localhost:65535/;sentinel://localhost:65536/;', # noqa: E501 transport_options={ 'master_name': 'not_important', },