Update Rust crate thiserror to v2 (#9006)

This commit is contained in:
renovate[bot] 2024-11-15 09:54:16 -06:00 committed by GitHub
parent 21d570fac9
commit 312ae12650
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 78 additions and 58 deletions

View file

@ -207,7 +207,7 @@ pub enum Error {
Io(#[from] io::Error),
/// An error was encountering when retrieving interpreter information.
#[error("Failed to inspect Python interpreter from {2} at `{}` ", .1.user_display())]
#[error("Failed to inspect Python interpreter from {} at `{}` ", _2, _1.user_display())]
Query(
#[source] Box<crate::interpreter::Error>,
PathBuf,