Skip to content

Commit

Permalink
Update src/common/options.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Brent George <[email protected]>
  • Loading branch information
DamienDeepgram and bd-g authored Jul 19, 2024
1 parent 8817a6a commit 1a0bb25
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2132,8 +2132,7 @@ impl Serialize for SerializableOptions<'_> {
}

if let Some(extra) = extra {
#[allow(clippy::unused_enumerate_index)]
for (_i, (key, value)) in extra.iter().enumerate() {
for (key, value) in extra.iter() {
seq.serialize_element(&("extra", format!("{}:{}", key, value)))?;
}
}
Expand Down

0 comments on commit 1a0bb25

Please sign in to comment.