Skip to content

Commit

Permalink
fix import (#2175)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvora-h committed May 9, 2022
1 parent c51435d commit 42b937f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion redis/commands/search/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import redis

from ...asyncio.client import Pipeline as AsyncioPipeline
from .commands import AsyncSearchCommands, SearchCommands


Expand Down Expand Up @@ -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."""
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
long_description_content_type="text/markdown",
keywords=["Redis", "key-value store", "database"],
license="MIT",
version="4.3.0",
version="4.3.1",
packages=find_packages(
include=[
"redis",
Expand Down

0 comments on commit 42b937f

Please sign in to comment.