Skip to content

Commit ac8df85

Browse files
committed
fix: fix clippy
1 parent b6e385e commit ac8df85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub fn download_zkey(depth: u16) -> Result<String, Box<dyn Error>> {
4747
let out_dir = std::env::temp_dir();
4848
let dest_path = out_dir.join(dest_filename.clone());
4949
if !dest_path.exists() {
50-
let url = format!("{}{}", base_url, filename);
50+
let url = format!("{base_url}{filename}");
5151
let client = Client::new();
5252
let mut resp = client.get(&url).send()?.error_for_status()?;
5353
let mut out = File::create(&dest_path)?;

0 commit comments

Comments
 (0)