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
Most or all errors thrown in this package are made via rlang::abort(). We are transitioning to cli::cli_abort() to make use of the richer styling options for errors via cli (which calls rlang under the hood).
The package itself uses abort() and warn() fairly straightforwardly so I don't think this will be challenging.
All warn() calls are in remove_* functions, doing the same thing.
This issue is deliberately not a tidy-dev-day issue because {workflows} imports dev versions of {hardhat}, {parsnip}, {recipes}, and {rsample}. And imports the pre-CRAN package {tailor}
The text was updated successfully, but these errors were encountered:
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
Ref: tidymodels/rsample#457
Most or all errors thrown in this package are made via
rlang::abort()
. We are transitioning tocli::cli_abort()
to make use of the richer styling options for errors via cli (which calls rlang under the hood).The package itself uses
abort()
andwarn()
fairly straightforwardly so I don't think this will be challenging.All
warn()
calls are inremove_*
functions, doing the same thing.took a look and found https://github.com/tidymodels/workflows/blob/main/R/broom.R#L38 which won't be reached because of
arg_match()
This issue is deliberately not a tidy-dev-day issue because {workflows} imports dev versions of {hardhat}, {parsnip}, {recipes}, and {rsample}. And imports the pre-CRAN package {tailor}
The text was updated successfully, but these errors were encountered: