We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96864ba commit 3fa2eaaCopy full SHA for 3fa2eaa
src/_pytask/task_utils.py
@@ -215,7 +215,7 @@ def _parse_after(
215
for func in after:
216
if not hasattr(func, "pytask_meta"):
217
func = task()(func) # noqa: PLW2901
218
- new_after.append(func.pytask_meta._id)
+ new_after.append(func.pytask_meta._id) # type: ignore[attr-defined]
219
return new_after
220
msg = (
221
"'after' should be an expression string, a task, or a list of tasks. Got "
0 commit comments