diff rust/hg-cpython/src/conversion.rs @ 49631:c7fb9b74e753

rust: remove newly redundant `use` statements with the 2021 edition prelude https://doc.rust-lang.org/edition-guide/rust-2021/prelude.html
author Rapha?l Gom?s <rgomes@octobus.net>
date Mon, 14 Nov 2022 15:20:48 +0100
parents 33fe96a5c522
children 4c5f6e95df84
line wrap: on
line diff
--- a/rust/hg-cpython/src/conversion.rs	Mon Nov 14 15:19:27 2022 +0100
+++ b/rust/hg-cpython/src/conversion.rs	Mon Nov 14 15:20:48 2022 +0100
@@ -10,7 +10,6 @@
 
 use cpython::{ObjectProtocol, PyObject, PyResult, Python};
 use hg::Revision;
-use std::iter::FromIterator;
 
 /// Utility function to convert a Python iterable into various collections
 ///