Skip to content

Commit

Permalink
clippy loop fix
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Detjens <[email protected]>
  • Loading branch information
detjensrobert committed Jan 20, 2025
1 parent 189db5b commit a571051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cluster_setup/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ fn install_helm_chart(
let reader = helm_cmd.reader()?;
let mut lines = BufReader::new(reader).lines();

while let Some(item) = lines.next() {
for item in lines {
match item {
Ok(line) => debug!("helm: <bright-black>{line}</>"),
Err(e) => return Err(e.into()),
Expand Down

0 comments on commit a571051

Please sign in to comment.