Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sehz committed Mar 16, 2023
1 parent 0eca324 commit 28dda11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fluvio-cli/src/client/topic/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl CreateTopicOpt {
pub(crate) fn columns_mappings(&self) -> Result<Vec<ColumnDef>> {
let mut columns = vec![];
for (name, _) in &self.columns {
columns.push(ColumnDef::from_dsl(&name)?);
columns.push(ColumnDef::from_dsl(name)?);
}
Ok(columns)
}
Expand Down

0 comments on commit 28dda11

Please sign in to comment.