Skip to content

Commit

Permalink
Remove unneeded format!()
Browse files Browse the repository at this point in the history
  • Loading branch information
milliams committed Jul 11, 2024
1 parent c8075b2 commit 6a91ece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ fn main() -> Result<()> {
]
.join(std::ffi::OsStr::new("")),
);
let cert_details_file_path = cache_dir.join(format!("cert.json"));
let cert_details_file_path = cache_dir.join("cert.json");

match &args.command {
Some(Commands::Auth {}) => {
Expand Down

0 comments on commit 6a91ece

Please sign in to comment.