You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this classifies as a bug or not I just noticed that the transformation of targets removes argument from code. The example below shows that both recursive=F and use.names=F get removed in the combine target. If i do not transform the plan this is not an issue. Is there a way avoid these changes in the code. Maybe the transform could ignore formal arguments of the unlist function?
This is a strange edge case. It happens because the splicing code calls do.call("c", args, quote = TRUE) on the arguments to your command, and the c() function has formal arguments use.names and recursive.
I'm not sure if this classifies as a bug or not I just noticed that the transformation of targets removes argument from code. The example below shows that both
recursive=F
anduse.names=F
get removed in the combine target. If i do not transform the plan this is not an issue. Is there a way avoid these changes in the code. Maybe the transform could ignore formal arguments of the unlist function?Created on 2020-05-26 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered: