From 24cae41d8567b2468be966934614271ea10e0f8a Mon Sep 17 00:00:00 2001 From: Hannah Frick Date: Wed, 23 Oct 2024 11:35:13 +0100 Subject: [PATCH] don't need to test the re-exports --- R/extract.R | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/R/extract.R b/R/extract.R index 1e93f3c1..e5e57f0c 100644 --- a/R/extract.R +++ b/R/extract.R @@ -42,6 +42,8 @@ #' # `workflows`. NULL +# nocov start + #' @rdname hardhat-extract #' @export extract_workflow <- function(x, ...) { @@ -108,3 +110,5 @@ extract_parameter_set_dials <- function(x, ...) { extract_fit_time <- function(x, ...) { UseMethod("extract_fit_time") } + +# nocov end