mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +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!(
|
||||
app_state
|
||||
.storage
|
||||
.store_package(&manifest.name, &version_id, bytes.to_vec(),),
|
||||
.store_package(&manifest.name, &version_id, bytes.to_vec()),
|
||||
join_all(
|
||||
docs_pages
|
||||
.into_iter()
|
||||
|
|
|
@ -91,7 +91,7 @@ pub fn check_for_updates(reqwest: &reqwest::blocking::Client) -> anyhow::Result<
|
|||
.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(())
|
||||
|
|
|
@ -88,7 +88,7 @@ pub(crate) fn insert_node(
|
|||
|
||||
match (¤t_node.direct, &node.direct) {
|
||||
(Some(_), Some(_)) => {
|
||||
log::warn!("duplicate direct dependency for {name}@{version}",);
|
||||
log::warn!("duplicate direct dependency for {name}@{version}");
|
||||
}
|
||||
|
||||
(None, Some(_)) => {
|
||||
|
|
Loading…
Reference in a new issue