Skip to content

Commit 2a6a0ea

Browse files
committed
Fix.
1 parent aed5517 commit 2a6a0ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pytask_parallel/wrappers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ def wrap_task_in_process( # noqa: PLR0913
126126
except Exception: # noqa: BLE001
127127
exc_info = sys.exc_info()
128128
processed_exc_info = _render_traceback_to_string(
129-
exc_info,
129+
exc_info, # type: ignore[arg-type]
130130
show_locals,
131-
console_options, # type: ignore[arg-type]
131+
console_options,
132132
)
133133
products = None
134134
else:

0 commit comments

Comments
 (0)