diff options
author | Omer Katz <omer.drow@gmail.com> | 2018-12-20 14:36:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-20 14:36:38 +0200 |
commit | 98825c8142d9e96435060bd2bc889d674966de09 (patch) | |
tree | 683dbda662c0a31a4c1b16ed598c33739c26f8aa | |
parent | c48d201ee2afe80cc6a30d9e58beb982d20fc220 (diff) | |
download | kombu-98825c8142d9e96435060bd2bc889d674966de09.tar.gz |
Happify lint.
-rw-r--r-- | kombu/transport/redis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kombu/transport/redis.py b/kombu/transport/redis.py index 3e34fb2d..6831f510 100644 --- a/kombu/transport/redis.py +++ b/kombu/transport/redis.py @@ -1107,7 +1107,7 @@ class SentinelChannel(Channel): sentinel_inst = sentinel.Sentinel( connection_list, min_other_sentinels=getattr(self, 'min_other_sentinels', 0), - sentinel_kwargs=getattr(self, 'sentinel_kwargs',None), + sentinel_kwargs=getattr(self, 'sentinel_kwargs', None), **additional_params) master_name = getattr(self, 'master_name', None) |