Skip to content

Commit

Permalink
fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
HollowPrincess committed Aug 25, 2023
1 parent 60c9c82 commit 3965256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbtools/run_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def run_in_process(func):
""" Decorator to run the `func` in a separated process for terminating all relevant processes properly. """
@wraps(func)
def _wrapper(*args, **kwargs):
# pylint: broad-exception-caught, W0719
# pylint: broad-exception-caught, broad-exception-raised
returned_value = Queue()
kwargs = {**kwargs, 'returned_value': returned_value}

Expand Down

0 comments on commit 3965256

Please sign in to comment.