Skip to content

Commit 0f73fca

Browse files
committed
lint: mypy
1 parent e3cbd0b commit 0f73fca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

taskiq_nats/result_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ async def get_result(
115115
)
116116

117117
taskiq_result: TaskiqResult[_ReturnType] = model_validate(
118-
TaskiqResult[_ReturnType],
119-
self.serializer.loadb(result.data), # type: ignore[arg-type]
118+
TaskiqResult[_ReturnType], # type: ignore[misc]
119+
self.serializer.loadb(result.data),
120120
)
121121

122122
if not with_logs:

0 commit comments

Comments
 (0)