diff options
| author | dvora-h <67596500+dvora-h@users.noreply.github.com> | 2022-08-02 17:45:07 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-02 17:45:07 +0300 |
| commit | 19cedab73a9b7d8e6af2753a1206e79c50ee2d37 (patch) | |
| tree | ee9f456631d10a121d347fd50d2b88dd88eee640 /redis/commands | |
| parent | 47b5dd081fcea2f14faa6d4ca520f614cc385589 (diff) | |
| download | redis-py-19cedab73a9b7d8e6af2753a1206e79c50ee2d37.tar.gz | |
Fix async SEARCH pipeline (#2316)
* fix search async pipeline
* newline
Diffstat (limited to 'redis/commands')
| -rw-r--r-- | redis/commands/search/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands/search/__init__.py b/redis/commands/search/__init__.py index 923711b..70e9c27 100644 --- a/redis/commands/search/__init__.py +++ b/redis/commands/search/__init__.py @@ -167,5 +167,5 @@ class Pipeline(SearchCommands, redis.client.Pipeline): """Pipeline for the module.""" -class AsyncPipeline(AsyncSearchCommands, AsyncioPipeline): +class AsyncPipeline(AsyncSearchCommands, AsyncioPipeline, Pipeline): """AsyncPipeline for the module.""" |
