Skip to content

Commit

Permalink
Clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
toolCHAINZ committed Jan 23, 2025
1 parent 1e79c58 commit c91cf53
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion jingle/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ fn main() -> anyhow::Result<()> {
architecture,
hex_bytes,
} => model(&config, architecture, hex_bytes),
Commands::Architectures => Ok(list_architectures(&config)),
Commands::Architectures => {
list_architectures(&config);
Ok(())
}
}
}

Expand Down

0 comments on commit c91cf53

Please sign in to comment.