Fix double space typo (#12171)

This commit is contained in:
konsti 2025-03-14 19:29:44 +01:00 committed by GitHub
parent d2b9ffdc9e
commit 83271f0185
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -4754,7 +4754,7 @@ impl std::fmt::Display for LockErrorHint {
if let Some(version) = version {
write!(
f,
"{}{} You're using {}, but `{}` ({}) only has wheels with the following Python ABI tag{s}: {}",
"{}{} You're using {}, but `{}` ({}) only has wheels with the following Python ABI tag{s}: {}",
"hint".bold().cyan(),
":".bold(),
best,

View File

@ -4669,7 +4669,7 @@ fn sync_wheel_url_source_error() -> Result<()> {
Resolved 3 packages in [TIME]
error: Distribution `cffi==1.17.1 @ direct+https://files.pythonhosted.org/packages/08/fd/cc2fedbd887223f9f5d170c96e57cbf655df9831a6546c1727ae13fa977a/cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl` can't be installed because the binary distribution is incompatible with the current platform
hint: You're using CPython 3.12 (`cp312`), but `cffi` (v1.17.1) only has wheels with the following Python ABI tag: `cp310`
hint: You're using CPython 3.12 (`cp312`), but `cffi` (v1.17.1) only has wheels with the following Python ABI tag: `cp310`
"###);
Ok(())
@ -4720,7 +4720,7 @@ fn sync_wheel_path_source_error() -> Result<()> {
Resolved 3 packages in [TIME]
error: Distribution `cffi==1.17.1 @ path+cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl` can't be installed because the binary distribution is incompatible with the current platform
hint: You're using CPython 3.12 (`cp312`), but `cffi` (v1.17.1) only has wheels with the following Python ABI tag: `cp310`
hint: You're using CPython 3.12 (`cp312`), but `cffi` (v1.17.1) only has wheels with the following Python ABI tag: `cp310`
"###);
Ok(())