Skip to content

Commit

Permalink
fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed May 13, 2024
1 parent c0bf55a commit aa4674d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/freeze/src/types/files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl FileOutput {
};
for meta_datatype in meta_datatypes.iter() {
for datatype in meta_datatype.datatypes().into_iter() {
if query.schemas.get(&datatype).is_some() {
if query.schemas.contains_key(&datatype) {
paths.insert(datatype, self.get_path(query, partition, datatype)?);
}
}
Expand Down

0 comments on commit aa4674d

Please sign in to comment.