From 3323f5eec2643bdebdd1e43b9488f712c478cb3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Todor=20Kondi=C4=87?= <todor.kondic@uni.lu> Date: Sat, 2 May 2020 10:59:02 +0200 Subject: [PATCH] Fix importFrom directive * R/shiny-ui-base.R, NAMESPACE: importFrom(shiny,validate) now correct. --- NAMESPACE | 2 +- R/shiny-ui-base.R | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NAMESPACE b/NAMESPACE index d939edf..c80e789 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -10,4 +10,4 @@ export(run) export(run_in_dir) export(vrfy_conf) import(data.table) -importFrom("(shiny,","validate)") +importFrom(shiny,validate) diff --git a/R/shiny-ui-base.R b/R/shiny-ui-base.R index 9c37b36..4f2ed85 100644 --- a/R/shiny-ui-base.R +++ b/R/shiny-ui-base.R @@ -12,7 +12,7 @@ ## See the License for the specific language governing permissions and ## limitations under the License. -##' @importFrom(shiny, validate) +##' @importFrom shiny validate react_v <- shiny::reactiveValues react_f <- shiny::reactive -- GitLab