Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ho-229 committed Dec 15, 2024
1 parent 2d3a02c commit 71c919f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/cloud_filter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl Filter for CloudFilter {
})?
.filter_map(|e| async {
let entry = e.ok()?;
let metadata = self.op.stat(&entry.path()).await.ok()?;
let metadata = self.op.stat(entry.path()).await.ok()?;
let entry_remote_path = PathBuf::from(entry.path());
let relative_path = entry_remote_path
.strip_prefix(&remote_path)
Expand Down

0 comments on commit 71c919f

Please sign in to comment.