Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Crayon-Shin-chan-bitlightlabs committed Feb 5, 2025
1 parent 6ed6790 commit 1754343
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cli/src/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,22 +146,22 @@ impl Args {
println!("A new contract issued with ID {contract_id}");
}

Cmd::Purge { force, contract } => {
Cmd::Purge { force: _, contract: _ } => {
todo!();
//self.mound().purge(contract)
}

Cmd::Import { articles } => {
Cmd::Import { articles: _ } => {
todo!();
//self.mound().import_file(articles)
}

Cmd::Export { contract, file } => {
Cmd::Export { contract: _, file: _ } => {
todo!();
//self.mound().export_file(contract, file)
}

Cmd::Backup { file } => {
Cmd::Backup { file: _ } => {
todo!();
}

Expand Down

0 comments on commit 1754343

Please sign in to comment.