Skip to content

Commit

Permalink
fix pkgdown and lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo committed Nov 23, 2023
1 parent 0ced7cc commit 33321ea
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# teal.transform 0.4.0.9006
# teal.transform 0.4.0.9007

### Miscellaneous

Expand Down
2 changes: 0 additions & 2 deletions R/filter_spec.R
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@ filter_spec_internal.default <- function(vars_choices,
)
stopifnot(all(!duplicated(vars_selected)))
checkmate::assert_subset(vars_selected, vars_choices)
# stopifnot(all(vars_selected %in% vars_choices))
}

if (!is.null(choices)) {
Expand All @@ -409,7 +408,6 @@ filter_spec_internal.default <- function(vars_choices,
)
stopifnot(all(!duplicated(selected)))
checkmate::assert_subset(selected, choices)
# stopifnot(all(selected %in% choices))
}

res <- list(
Expand Down
1 change: 0 additions & 1 deletion R/select_spec.R
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ select_spec.default <- function(choices, # nolint
# Deal with selected
if (length(selected) > 0) {
stopifnot(is.atomic(selected))
# stopifnot(all(selected %in% choices))
checkmate::assert_subset(selected, choices)
stopifnot(multiple || length(selected) == 1)
if (is.null(names(selected))) {
Expand Down
1 change: 0 additions & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ reference:
- data_extract_multiple_srv
- data_extract_ui
- data_extract_srv
- data_merge_srv
- data_merge_module
- datanames_input
- merge_expression_module
Expand Down

0 comments on commit 33321ea

Please sign in to comment.