summaryrefslogtreecommitdiffstats
path: root/src/util/git.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/git.rs')
-rw-r--r--src/util/git.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/git.rs b/src/util/git.rs
index 3926c14..a1a261b 100644
--- a/src/util/git.rs
+++ b/src/util/git.rs
@@ -1,9 +1,9 @@
use std::path::Path;
-use anyhow::anyhow;
-use anyhow::Result;
use anyhow::Context;
use anyhow::Error;
+use anyhow::Result;
+use anyhow::anyhow;
use git2::Repository;
pub fn repo_is_clean(p: &Path) -> Result<bool> {