Skip to content

Commit

Permalink
refactor: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmauro committed Nov 27, 2024
1 parent 2a2e712 commit f3ec2ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zkstack_cli/crates/common/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,16 +198,16 @@ where
}

#[allow(clippy::too_many_arguments)]
fn docker_run<'a, P>(
shell: &'a Shell,
fn docker_run<P>(
shell: &Shell,
genesis_path: P,
wallets_path: P,
general_path: P,
secrets_path: P,
contracts_path: P,
additional_args: Vec<String>,
tag: String,
) -> Cmd<'a>
) -> Cmd<'_>
where
P: AsRef<OsStr>,
{
Expand Down

0 comments on commit f3ec2ee

Please sign in to comment.