We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca83e61 commit ca19105Copy full SHA for ca19105
crates/ark/src/modules.rs
@@ -18,8 +18,6 @@ use libr::SEXP;
18
use once_cell::sync::Lazy;
19
use rust_embed::RustEmbed;
20
21
-use crate::r_task;
22
-
23
#[derive(RustEmbed)]
24
#[folder = "src/modules/positron"]
25
struct PositronModuleAsset;
@@ -135,7 +133,7 @@ pub fn initialize() -> anyhow::Result<RObject> {
135
133
136
134
// Spawn the watcher thread when R is idle so we don't try to access
137
// the R API while R is starting up
138
- r_task::spawn_idle(move || async {
+ crate::r_task::spawn_idle(move || async {
139
log::info!("Watching R modules from sources via cargo manifest");
140
spawn_watcher_thread(root);
141
});
0 commit comments