mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Fix missing comma before conclusions (#1042)
Closes https://github.com/astral-sh/puffin/issues/1010
This commit is contained in:
parent
e21948f353
commit
89eb8547ce
4 changed files with 15 additions and 15 deletions
|
@ -282,7 +282,7 @@ impl ReportFormatter<PubGrubPackage, Range<Version>> for PubGrubReportFormatter<
|
|||
|
||||
format!(
|
||||
"And because {}we can conclude that {}",
|
||||
Padded::from_string("", &external, " "),
|
||||
Padded::from_string("", &external, ", "),
|
||||
Padded::from_string("", &terms, "."),
|
||||
)
|
||||
}
|
||||
|
|
|
@ -660,7 +660,7 @@ async fn msgraph_sdk() -> Result<()> {
|
|||
|
||||
assert_snapshot!(err, @r###"
|
||||
Because only msgraph-core<1.0.0a2 is available and msgraph-sdk==1.0.0 depends on msgraph-core>=1.0.0a2, we can conclude that msgraph-sdk==1.0.0 cannot be used.
|
||||
And because you require msgraph-sdk==1.0.0 we can conclude that the requirements are unsatisfiable.
|
||||
And because you require msgraph-sdk==1.0.0, we can conclude that the requirements are unsatisfiable.
|
||||
|
||||
hint: msgraph-core was requested with a pre-release marker (e.g., msgraph-core>=1.0.0a2), but pre-releases weren't enabled (try: `--prerelease=allow`)
|
||||
"###);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue