Eric Newkirk
Eric Newkirk
Thanks @randy3k! I added ```r options(languageserver.lint_cache = FALSE) ``` to my .RProfile before the language server is started and everything works again.
``` > devtools::install_github("jimhester/lintr") Skipping install of 'lintr' from a github remote, the SHA1 (387b939b) has not changed since last install. Use `force = TRUE` to force installation ```
Sounds like the same issue described [here](https://github.com/mikeyEcology/MLWIC2/issues/12). Try changing line 18 of [MLWIC2/inst/shiny-apps/make_input/server.R](https://github.com/mikeyEcology/MLWIC2/blob/master/inst/shiny-apps/make_input/server.R) from: ```r shinyFiles::shinyFileChoose(input, "input_file", roots=volumes, session=session, filetypes=c('txt', 'csv')) ``` to \(added parentheses after `volumes`\): ```r shinyFiles::shinyFileChoose(input, "input_file",...
Hi @mikeyEcology, I ran into this same issue. Line 7 in setup_shiny.R should read: `shinyFiles::shinyDirChoose(input, 'python_loc', roots=volumes(), session=session)` instead of `shinyFiles::shinyDirChoose(input, 'python_loc', roots=volumes, session=session)` shinyFiles::getVolumes returns a function which can...
No problem! I think they just changed the shinyFiles package to make it scan for new drives every time you open a dialog, rather than just once when you open...
I'm sure this is way too late, but I just ran into the same thing. The issue is source groups with a sample size of 1 and therefore a standard...