Skip to content

Commit

Permalink
fix of make modules fn
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewphamilton committed Feb 14, 2022
1 parent a729cf4 commit cc62807
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
9 changes: 0 additions & 9 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Collate:
'C4_Ready4Module.R'
'C4_Ready4Private.R'
'C4_Ready4Public.R'
'add.R'
'fn_add.R'
'fn_get.R'
'fn_make.R'
Expand All @@ -36,11 +35,9 @@ Collate:
'fn_transform.R'
'fn_update.R'
'fn_write.R'
'get.R'
'grp_generics.R'
'imp_fns.R'
'imp_mthds.R'
'make.R'
'mthd_authorSlot.R'
'mthd_characterizeSlot.R'
'mthd_depictSlot.R'
Expand All @@ -57,13 +54,7 @@ Collate:
'mthd_renewSlot.R'
'mthd_shareSlot.R'
'pkg_ready4.R'
'print.R'
'ready4-package.R'
'remove.R'
'rowbind.R'
'transform.R'
'update.R'
'write.R'
Imports:
assertthat,
bib2df,
Expand Down
3 changes: 2 additions & 1 deletion R/fn_get.R
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ get_cls_extensions <- function (pkg_extensions_tb, gh_repo_1L_chr = "ready4-dev/
endsWith("classes_lup.RDS")])) %>% tibble::as_tibble() %>%
dplyr::arrange(pt_ns_chr) %>% dplyr::filter(pt_ns_chr %in%
pkg_extensions_tb$pt_ns_chr) %>% dplyr::arrange(pt_ns_chr) %>%
dplyr::select(type_chr, pt_ns_chr, old_class_lgl)
dplyr::select(type_chr, pt_ns_chr, old_class_lgl) %>%
dplyr::filter(type_chr != "TTU_predictors_lup")
return(cls_extensions_tb)
}
#' Get datasets tibble
Expand Down
3 changes: 2 additions & 1 deletion data-raw/fns/get.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ get_cls_extensions <- function(pkg_extensions_tb,
dplyr::arrange(pt_ns_chr) %>%
dplyr::filter(pt_ns_chr %in% pkg_extensions_tb$pt_ns_chr) %>%
dplyr::arrange(pt_ns_chr) %>%
dplyr::select(type_chr, pt_ns_chr, old_class_lgl)
dplyr::select(type_chr, pt_ns_chr, old_class_lgl) %>%
dplyr::filter(type_chr != "TTU_predictors_lup")
return(cls_extensions_tb)
}
get_datasets_tb <- function(gh_repo_1L_chr = "ready4-dev/ready4",
Expand Down

0 comments on commit cc62807

Please sign in to comment.