Skip to content

Commit

Permalink
Fix CI clippy that didn't catch in local clippy :thinking_face:
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiayue Charles Lin committed Jun 7, 2023
1 parent aa6a6b6 commit 56c37de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/array/ops/take.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl Utf8Array {
let val = self.get(idx);
match val {
None => Ok("None".to_string()),
Some(v) => Ok(format!("{v}")),
Some(v) => Ok(v.to_string()),
}
}
}
Expand Down

0 comments on commit 56c37de

Please sign in to comment.