File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed
taskiq/result_backends/redis
taskiq/result_backends/redis Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " taskiq-redis"
33version = " 0.1.0"
4- description = " "
5- authors = [" taskiq-team" ]
4+ description = " Redis integration for taskiq "
5+ authors = [" taskiq-team <taskiq@norely.com> " ]
66packages = [{ include = " taskiq" , from = " taskiq_redis" }]
77
88[tool .poetry .dependencies ]
99python = " ^3.7"
1010taskiq = { git = " https://github.com/taskiq-python/taskiq" , branch = " master" }
1111redis = " 4.3.4"
12- flake8 = " ^4.0.1"
1312
1413[tool .poetry .dev-dependencies ]
1514pytest = " ^7.0"
@@ -37,9 +36,7 @@ allow_untyped_decorators = true
3736warn_return_any = false
3837
3938[[tool .mypy .overrides ]]
40- module = [
41- ' redis.asyncio'
42- ]
39+ module = [' redis.asyncio' ]
4340ignore_missing_imports = true
4441
4542[tool .isort ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ """Package for redis integration."""
Original file line number Diff line number Diff line change 1+ """Redis AsyncResultBackend."""
2+ from taskiq_redis .taskiq .result_backends .redis .redis_backend import (
3+ RedisAsyncResultBackend ,
4+ )
5+
6+ __all__ = ["RedisAsyncResultBackend" ]
Original file line number Diff line number Diff line change 22from typing import TypeVar
33
44from redis .asyncio import ConnectionPool , Redis
5- from taskiq .abc .result_backend import TaskiqResult
6-
75from taskiq import AsyncResultBackend
6+ from taskiq .abc .result_backend import TaskiqResult
87
98_ReturnType = TypeVar ("_ReturnType" )
109
You can’t perform that action at this time.
0 commit comments