We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3cbd0b commit 0f73fcaCopy full SHA for 0f73fca
1 file changed
taskiq_nats/result_backend.py
@@ -115,8 +115,8 @@ async def get_result(
115
)
116
117
taskiq_result: TaskiqResult[_ReturnType] = model_validate(
118
- TaskiqResult[_ReturnType],
119
- self.serializer.loadb(result.data), # type: ignore[arg-type]
+ TaskiqResult[_ReturnType], # type: ignore[misc]
+ self.serializer.loadb(result.data),
120
121
122
if not with_logs:
0 commit comments