Skip to content

Commit 9a0b6aa

Browse files
committed
fix: remove rlistings dependency
1 parent 062b768 commit 9a0b6aa

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

DESCRIPTION

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ Imports:
4848
lattice (>= 0.18-4),
4949
lifecycle (>= 0.2.0),
5050
MASS (>= 7.3-61),
51-
rlistings (>= 0.2.8),
5251
rtables (>= 0.6.8),
5352
scales (>= 1.3.0),
5453
shinyjs (>= 2.1.0),

R/tm_g_distribution.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ srv_distribution <- function(id,
541541

542542
qenv <- teal.code::eval_code(
543543
data(),
544-
'library("ggplot2");library("rlistings");library("dplyr")' # nolint quotes
544+
'library("ggplot2");library("dplyr")' # nolint quotes
545545
)
546546

547547
anl_merged_q <- reactive({

R/tm_missing_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,7 @@ srv_missing_data <- function(id,
11141114
qenv <- if (!is.null(group_var)) {
11151115
common_code_libraries_q <- teal.code::eval_code(
11161116
common_code_q(),
1117-
'library("forcats");library("glue");library("rlistings")' # nolint quotes
1117+
'library("forcats");library("glue");' # nolint quotes
11181118
)
11191119
teal.code::eval_code(
11201120
common_code_libraries_q,

R/tm_outliers.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ srv_outliers <- function(id, data, reporter, filter_panel_api, outlier_var,
443443
data(),
444444
paste0(
445445
'library("dplyr");library("tidyr");', # nolint quotes
446-
'library("tibble");library("ggplot2");library("rlistings")'
446+
'library("tibble");library("ggplot2");'
447447
)
448448
) %>% # nolint quotes
449449
teal.code::eval_code(as.expression(anl_merged_input()$expr))

0 commit comments

Comments
 (0)