insightsengineering / teal

Exploratory Web Apps for Analyzing Clinical Trial Data
https://insightsengineering.github.io/teal/
Other
171 stars 34 forks source link

remove fluff in `teal.R` #1128

Closed chlebowa closed 3 months ago

chlebowa commented 6 months ago

current state

#' @importFrom magrittr %>%
#' @export
magrittr::`%>%`

# Fix R CMD check notes
#' @import shiny teal.data teal.slice
#' @importFrom stats setNames
NULL

# Fix R CMD check notes
#' @importFrom lifecycle badge
lifecycle::badge

Some of this is superfluous and misleading.

sufficient and accurate

#' @import shiny teal.data teal.slice
#' @importFrom stats setNames
#' @importFrom magrittr %>%
#' @export magrittr::`%>%`
NULL

checks will pass

m7pr commented 6 months ago

feel free to open a PR. looks good