Skip to content

Commit

Permalink
Remove banned ignore comment
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak committed Oct 19, 2023
1 parent c69fae2 commit 0b1892a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toil/wdl/wdltoil.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def decorated(*args: Any, **kwargs: Any) -> Any:
Run the decoratee and handle WDL errors.
"""
with wdl_error_reporter(task, exit=exit, log=log):
return decoratee(*args, **kwargs) # type: ignore
return decoratee(*args, **kwargs)
return cast(F, decorated)
return decorator

Expand Down

0 comments on commit 0b1892a

Please sign in to comment.