Replies: 1 comment
-
Thanks, should be fixed in 4657a6f. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Help
Description
In the most recent version of targets, if
tar_mermaid
is called from within a targets pipeline, the pipeline fails with the error message 'argument "store" is missing, with no default'. Calling the same function outside of the pipeline does not result in this error.This issue does not occur with targets 1.3.0, but was introduced in a later version.
I believe the cause is
targets/R/tar_mermaid.R
Line 59 in 7115068
tar_assert_allow_meta("tar_mermaidd")
should be changed totar_assert_allow_meta("tar_mermaidd", store)
.Beta Was this translation helpful? Give feedback.
All reactions