summaryrefslogtreecommitdiff
path: root/redis/commands
diff options
context:
space:
mode:
authordvora-h <67596500+dvora-h@users.noreply.github.com>2022-05-09 15:55:47 +0300
committerGitHub <noreply@github.com>2022-05-09 15:55:47 +0300
commit42b937fa1f73f3e8251eba5ec8ead2fcbaec7c50 (patch)
tree78725fabd974df1f291cc49cf2f87c2fa64b2ec1 /redis/commands
parentc51435d92a8bed246f1c9ad9284c8543fca5d1e0 (diff)
downloadredis-py-42b937fa1f73f3e8251eba5ec8ead2fcbaec7c50.tar.gz
fix import (#2175)v4.3.1
Diffstat (limited to 'redis/commands')
-rw-r--r--redis/commands/search/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/redis/commands/search/__init__.py b/redis/commands/search/__init__.py
index bcad785..b1c0e8b 100644
--- a/redis/commands/search/__init__.py
+++ b/redis/commands/search/__init__.py
@@ -1,5 +1,6 @@
import redis
+from ...asyncio.client import Pipeline as AsyncioPipeline
from .commands import AsyncSearchCommands, SearchCommands
@@ -174,5 +175,5 @@ class Pipeline(SearchCommands, redis.client.Pipeline):
"""Pipeline for the module."""
-class AsyncPipeline(AsyncSearchCommands, redis.asyncio.client.Pipeline):
+class AsyncPipeline(AsyncSearchCommands, AsyncioPipeline):
"""AsyncPipeline for the module."""