Skip to content

Commit

Permalink
Fix Linting Bug (#553)
Browse files Browse the repository at this point in the history
Co-authored-by: KCarretto <[email protected]>
  • Loading branch information
jabbate19 and KCarretto authored Feb 7, 2024
1 parent 8d7f060 commit 8aa169b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions implants/lib/eldritch/src/file/follow_impl.rs
Original file line number Diff line number Diff line change
@@ -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<()> {
Expand Down Expand Up @@ -35,4 +35,4 @@ pub fn follow<'v>(path: String, f: Value<'v>, eval: &mut Evaluator<'v, '_>) -> R
}
}
Ok(())
}
}

0 comments on commit 8aa169b

Please sign in to comment.