Skip to content

Commit 67e97eb

Browse files
committed
mypy
1 parent 1356488 commit 67e97eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/service-library/src/servicelib/redis/_decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ async def _wrapper(*args: P.args, **kwargs: P.kwargs) -> R:
111111
work_task, timeout=SHUTDOWN_TIMEOUT_S
112112
)
113113
# return the extend task raised error
114-
return await auto_extend_task
114+
return await auto_extend_task # type: ignore[no-any-return] # will raise
115115

116116
finally:
117117
with contextlib.suppress(redis.exceptions.LockNotOwnedError):

0 commit comments

Comments
 (0)