diff --git a/implants/lib/eldritch/src/file/follow_impl.rs b/implants/lib/eldritch/src/file/follow_impl.rs index 1326af17..79d96fe6 100644 --- a/implants/lib/eldritch/src/file/follow_impl.rs +++ b/implants/lib/eldritch/src/file/follow_impl.rs @@ -1,7 +1,7 @@ use std::io::{Seek, BufReader, BufRead}; use notify::{Watcher, RecursiveMode, RecommendedWatcher, Config}; -use anyhow::{anyhow, Result}; +use anyhow::Result; use starlark::{eval::Evaluator, values::Value}; pub fn follow<'v>(path: String, f: Value<'v>, eval: &mut Evaluator<'v, '_>) -> Result<()> { @@ -35,4 +35,4 @@ pub fn follow<'v>(path: String, f: Value<'v>, eval: &mut Evaluator<'v, '_>) -> R } } Ok(()) -} \ No newline at end of file +}