Skip to content

Commit 5e192f7

Browse files
committed
remove super()
1 parent 1410097 commit 5e192f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

splitio/storage/adapters/redis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ def __init__(self, decorated, prefix_helper):
655655
:param decorated: Instance of redis cache client to decorate.
656656
:param _prefix_helper: PrefixHelper utility
657657
"""
658-
super().__init__(decorated, prefix_helper)
658+
RedisPipelineAdapterBase.__init__(self, decorated, prefix_helper)
659659

660660
def execute(self):
661661
"""Mimic original redis function but using user custom prefix."""
@@ -678,7 +678,7 @@ def __init__(self, decorated, prefix_helper):
678678
:param decorated: Instance of redis cache client to decorate.
679679
:param _prefix_helper: PrefixHelper utility
680680
"""
681-
super().__init__(decorated, prefix_helper)
681+
RedisPipelineAdapterBase.__init__(self, decorated, prefix_helper)
682682

683683
async def execute(self):
684684
"""Mimic original redis function but using user custom prefix."""

0 commit comments

Comments
 (0)