Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
not using a PR for this fix was a mistake
  • Loading branch information
Stonks3141 committed Apr 22, 2024
1 parent 6986e74 commit 55b6257
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ fn main() -> ExitCode {
let outfile = fs::OpenOptions::new()
.write(true)
.create(true)
.truncate(true)
.open("src/themes.rs")
.unwrap();

Expand All @@ -32,5 +33,5 @@ fn main() -> ExitCode {
println!("cargo::warning=whiskers exited nonzero");
return ExitCode::FAILURE;
}
return ExitCode::SUCCESS;
ExitCode::SUCCESS
}
1 change: 1 addition & 0 deletions src/themes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,4 @@ pub const MOCHA: Theme = Theme {
mantle: Color32::from_rgb(24, 24, 37),
crust: Color32::from_rgb(17, 17, 27),
};

0 comments on commit 55b6257

Please sign in to comment.