Skip to content

Commit a731a1a

Browse files
committed
Fix tpying issue.
1 parent fa323b4 commit a731a1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/_pytask/collect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def _collect_from_tasks(session: Session) -> None:
119119
raw_task = task_decorator()(raw_task) # noqa: PLW2901
120120

121121
path = get_file(raw_task)
122-
name = raw_task.pytask_meta.name # type: ignore[attr-defined]
122+
name = raw_task.pytask_meta.name
123123

124124
if has_mark(raw_task, "task"):
125125
# When tasks with @task are passed to the programmatic interface

0 commit comments

Comments
 (0)