Skip to content

Commit

Permalink
fix: operator cannot be applied to type
Browse files Browse the repository at this point in the history
  • Loading branch information
chungquantin committed Feb 11, 2025
1 parent 53258ac commit 5c891b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/pop-cli/src/commands/bench/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ impl Command {

match args.command {
#[cfg(feature = "parachain")]
Command::Pallet(cmd) => Command::bechmark_pallet(cmd, &mut cli),
}?;
Command::Pallet(cmd) => Command::bechmark_pallet(cmd, &mut cli)?,
};

cli.outro("Benchmark completed successfully!")?;
Ok(())
Expand Down

0 comments on commit 5c891b5

Please sign in to comment.