This commit is contained in:
konstin 2025-10-28 13:30:19 +01:00
parent 70219fcd9f
commit 81e2c10278
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ impl Display for VersionSpecifiersOrExact {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self { match self {
Self::VersionSpecifiers(specifiers) => Display::fmt(specifiers, f), Self::VersionSpecifiers(specifiers) => Display::fmt(specifiers, f),
Self::Exact(version) => write!(f, "=={}", version), Self::Exact(version) => write!(f, "=={version}"),
} }
} }
} }