Skip to content

Commit 5617936

Browse files
Bugfix: Removed redundant type ignore.
1 parent c120a37 commit 5617936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

that_depends/providers/context_resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def _wrapper(func: typing.Callable[P, T]) -> typing.Callable[P, T]:
301301
@wraps(func)
302302
async def _async_wrapper(*args: P.args, **kwargs: P.kwargs) -> T:
303303
async with self.context_async(force=force):
304-
return await func(*args, **kwargs) # type: ignore[no-any-return, misc]
304+
return await func(*args, **kwargs) # type: ignore[no-any-return]
305305

306306
return typing.cast(typing.Callable[P, T], _async_wrapper)
307307

0 commit comments

Comments
 (0)