Skip to content

Commit e77469f

Browse files
authored
Remove status from pytask_execute_task_log_start. (#107)
1 parent 0e8eb5e commit e77469f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/source/changes.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask-parallel) and
2727
environments with the same OS.
2828
- {pull}`106` fixes {pull}`99` such that only when there are coiled functions, all ready
2929
tasks are submitted.
30+
- {pull}`107` removes status from `pytask_execute_task_log_start` hook call.
3031

3132
## 0.4.1 - 2024-01-12
3233

src/pytask_parallel/execute.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from pytask import PTask
1717
from pytask import PythonNode
1818
from pytask import Session
19-
from pytask import TaskExecutionStatus
2019
from pytask import console
2120
from pytask import get_marks
2221
from pytask import hookimpl
@@ -92,7 +91,7 @@ def pytask_execute_build(session: Session) -> bool | None: # noqa: C901, PLR091
9291
for task_name in ready_tasks:
9392
task = session.dag.nodes[task_name]["task"]
9493
session.hook.pytask_execute_task_log_start(
95-
session=session, task=task, status=TaskExecutionStatus.RUNNING
94+
session=session, task=task
9695
)
9796
try:
9897
session.hook.pytask_execute_task_setup(

0 commit comments

Comments
 (0)