mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 19:10:35 +00:00
style: remove comma before paren
This commit is contained in:
parent
87a45c0429
commit
051e062c39
3 changed files with 3 additions and 3 deletions
|
@ -455,7 +455,7 @@ pub async fn publish_package(
|
||||||
let (a, b, c) = join!(
|
let (a, b, c) = join!(
|
||||||
app_state
|
app_state
|
||||||
.storage
|
.storage
|
||||||
.store_package(&manifest.name, &version_id, bytes.to_vec(),),
|
.store_package(&manifest.name, &version_id, bytes.to_vec()),
|
||||||
join_all(
|
join_all(
|
||||||
docs_pages
|
docs_pages
|
||||||
.into_iter()
|
.into_iter()
|
||||||
|
|
|
@ -91,7 +91,7 @@ pub fn check_for_updates(reqwest: &reqwest::blocking::Client) -> anyhow::Result<
|
||||||
.bold();
|
.bold();
|
||||||
let column = "|".bright_magenta().bold();
|
let column = "|".bright_magenta().bold();
|
||||||
|
|
||||||
println!("\n{stars}\n{column} {message} {column}\n{stars}\n",);
|
println!("\n{stars}\n{column} {message} {column}\n{stars}\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -88,7 +88,7 @@ pub(crate) fn insert_node(
|
||||||
|
|
||||||
match (¤t_node.direct, &node.direct) {
|
match (¤t_node.direct, &node.direct) {
|
||||||
(Some(_), Some(_)) => {
|
(Some(_), Some(_)) => {
|
||||||
log::warn!("duplicate direct dependency for {name}@{version}",);
|
log::warn!("duplicate direct dependency for {name}@{version}");
|
||||||
}
|
}
|
||||||
|
|
||||||
(None, Some(_)) => {
|
(None, Some(_)) => {
|
||||||
|
|
Loading…
Reference in a new issue