In an early development stage of this package I wanted to reduce the number notes and warnings in R CMD check. One cause of such notes/warnings is the cross-use of internal functions from another package (see https://github.com/PIP-Technical-Team/wbpip/pull/92).
I therefore added the following type of hacks
#' md_clean_data
#' Copied from wbpip to avoid notes in R CMD CHECK.
#' @noRd
md_clean_data <-
utils::getFromNamespace("md_clean_data", "wbpip")
This does - admittingly - however add a layer of unnecessary complexity to the code. So as part of the code cleaning I suggest removing it.
Hi @randrescastaneda, @tonyfujs
In an early development stage of this package I wanted to reduce the number notes and warnings in R CMD check. One cause of such notes/warnings is the cross-use of internal functions from another package (see https://github.com/PIP-Technical-Team/wbpip/pull/92).
I therefore added the following type of hacks
This does - admittingly - however add a layer of unnecessary complexity to the code. So as part of the code cleaning I suggest removing it.