Skip to content

Commit

Permalink
Remove unused type-ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirVondukr committed Nov 17, 2023
1 parent 6eee812 commit bd12a8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aioinject/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ def wrapper(*args: _P.args, **kwargs: _P.kwargs) -> _T:

if inject_method is InjectMethod.container:
with context:
return execute() # type: ignore[return-value]
return execute()

return execute() # type: ignore[return-value]
return execute()

return wrapper

Expand Down

0 comments on commit bd12a8f

Please sign in to comment.