Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiimk committed Aug 15, 2024
1 parent 7794283 commit 3cf7807
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ workspace-default-features = "deny"
# Find another ways to avoid duplication.
skip-tree = [
{ name = "bitflags" },
{ name = "dashmap" },
{ name = "heck" },
{ name = "http" },
{ name = "itertools" },
Expand Down
2 changes: 1 addition & 1 deletion src/udf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ impl ScalarUDFImpl for UdfEthDecodeEvent {
.decode_log_parts(topics, data, true)
.map_err(|e| DataFusionError::External(e.into()))?;

builder.append_value(&event_to_json(&event, &decoded).to_string());
builder.append_value(event_to_json(&event, &decoded).to_string());
}

Ok(ColumnarValue::Array(Arc::new(builder.finish())))
Expand Down

0 comments on commit 3cf7807

Please sign in to comment.