Skip to content

Commit f8c3fab

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 42de1cc commit f8c3fab

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/pytask_parallel/execute.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@ def pytask_execute_build(session: Session) -> bool | None: # noqa: C901, PLR091
197197

198198
# Check if tasks are not pending but running and update the live
199199
# status.
200-
if (live_execution or debug_status) and "_status_queue" in session.config:
200+
if (
201+
live_execution or debug_status
202+
) and "_status_queue" in session.config:
201203
status_queue = session.config["_status_queue"]
202204
while True:
203205
try:

0 commit comments

Comments
 (0)