From 45e8f1f67f8681ddb76c537de26b3836061b1013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ver=C3=ADssimo?= <211358+averissimo@users.noreply.github.com> Date: Tue, 5 Nov 2024 18:56:53 +0000 Subject: [PATCH] fix: note on R CMD check --- R/zzz.R | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/R/zzz.R b/R/zzz.R index 09671e83..63121d55 100644 --- a/R/zzz.R +++ b/R/zzz.R @@ -1,4 +1,8 @@ .onLoad <- function(libname, pkgname) { + # Fixes R CMD check note on "All declared Imports should be used." + # teal.data is necessary to access S3 method names.teal_data + teal.data::teal_data + teal.logger::register_logger(namespace = "teal.osprey") teal.logger::register_handlers("teal.osprey") }