Skip to content

Commit 42b937f

Browse files
authored
fix import (#2175)
1 parent c51435d commit 42b937f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

redis/commands/search/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import redis
22

3+
from ...asyncio.client import Pipeline as AsyncioPipeline
34
from .commands import AsyncSearchCommands, SearchCommands
45

56

@@ -174,5 +175,5 @@ class Pipeline(SearchCommands, redis.client.Pipeline):
174175
"""Pipeline for the module."""
175176

176177

177-
class AsyncPipeline(AsyncSearchCommands, redis.asyncio.client.Pipeline):
178+
class AsyncPipeline(AsyncSearchCommands, AsyncioPipeline):
178179
"""AsyncPipeline for the module."""

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description_content_type="text/markdown",
99
keywords=["Redis", "key-value store", "database"],
1010
license="MIT",
11-
version="4.3.0",
11+
version="4.3.1",
1212
packages=find_packages(
1313
include=[
1414
"redis",

0 commit comments

Comments
 (0)