rust/hg-cpython/src/dirstate/status.rs
changeset 52300 04b9a56c2d25
parent 51622 aa23b19e6da4
child 52302 f33b87b46135
--- a/rust/hg-cpython/src/dirstate/status.rs	Mon Nov 04 11:07:05 2024 +0100
+++ b/rust/hg-cpython/src/dirstate/status.rs	Mon Nov 04 11:13:05 2024 +0100
@@ -14,7 +14,9 @@
     exc::ValueError, ObjectProtocol, PyBool, PyBytes, PyErr, PyList, PyObject,
     PyResult, PyTuple, Python, PythonObject, ToPyObject,
 };
-use hg::dirstate::status::StatusPath;
+use hg::dirstate::status::{
+    BadMatch, DirstateStatus, StatusError, StatusOptions, StatusPath,
+};
 use hg::matchers::{
     DifferenceMatcher, IntersectionMatcher, Matcher, NeverMatcher,
     PatternMatcher, UnionMatcher,
@@ -26,8 +28,7 @@
         files::{get_bytes_from_path, get_path_from_bytes},
         hg_path::{HgPath, HgPathBuf},
     },
-    BadMatch, DirstateStatus, IgnorePattern, PatternError, PatternFileWarning,
-    StatusError, StatusOptions,
+    IgnorePattern, PatternError, PatternFileWarning,
 };
 use std::borrow::Borrow;