Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalser committed May 14, 2024
1 parent 7938cdf commit 1367c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile_verifier/src/boosting_oracles/data_sets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ async fn delete_old_data_sets(
while let Some(data_set) = data_sets.next_entry().await? {
let file_name = data_set.file_name();
let file_name = file_name.to_string_lossy();
let Some(cap) = RE.captures(&*file_name) else {
let Some(cap) = RE.captures(&file_name) else {
tracing::warn!("Could not determine data set file type: {}", file_name);
continue;
};
Expand Down

0 comments on commit 1367c27

Please sign in to comment.