rust/hg-pyo3/src/path.rs
changeset 52870 38e16da74aea
parent 52862 09eb477eec65
--- a/rust/hg-pyo3/src/path.rs	Wed Feb 05 11:20:39 2025 +0100
+++ b/rust/hg-pyo3/src/path.rs	Thu Feb 06 15:03:58 2025 +0100
@@ -73,7 +73,6 @@
     }
 }
 
-#[allow(dead_code)]
 pub fn paths_py_list<I, U>(
     py: Python<'_>,
     paths: impl IntoIterator<Item = I, IntoIter = U>,
@@ -91,7 +90,6 @@
     .unbind())
 }
 
-#[allow(dead_code)]
 pub fn paths_pyiter_collect<C>(paths: &Bound<'_, PyAny>) -> PyResult<C>
 where
     C: FromIterator<HgPathBuf>,