summaryrefslogtreecommitdiff
path: root/R/app.R
diff options
context:
space:
mode:
authorNaeem Model <me@nmode.ca>2023-07-24 21:49:40 +0000
committerNaeem Model <me@nmode.ca>2023-07-24 21:49:40 +0000
commit91465cd1193400053a48cca196d3fd777183c82c (patch)
tree637c1ef92ace1bca36700cd8e696eae6b37bf702 /R/app.R
parent1410d8167185f94beb213602e8221980b96d0b06 (diff)
Adjust indent level and enforce 80-character line limit
Diffstat (limited to 'R/app.R')
-rw-r--r--R/app.R6
1 files changed, 3 insertions, 3 deletions
diff --git a/R/app.R b/R/app.R
index 1bf3e93..feb052f 100644
--- a/R/app.R
+++ b/R/app.R
@@ -2,8 +2,8 @@
#'
#' @export
app <- function() {
- if (!requireNamespace("shiny", quietly=TRUE))
- stop("The package 'shiny' must be installed to launch the Rnaught web application.")
+ if (!requireNamespace("shiny", quietly = TRUE))
+ stop("The package 'shiny' must be installed to launch the Rnaught web application.")
- shiny::shinyApp(ui(), server)
+ shiny::shinyApp(ui, server)
}