Skip to content

Commit

Permalink
chore(clippy): fix clippy lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lquerel committed Feb 28, 2024
1 parent 15358b0 commit 00ce40e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ fn search_schema_command(
search_schema_tui(log, schema);
}

fn search_schema_tui(log: impl Logger + Sync + Clone + Sized, schema: TelemetrySchema) {
fn search_schema_tui(log: impl Logger + Sync + Clone, schema: TelemetrySchema) {
let semconv_registry = schema.semantic_convention_catalog();

let mut schema_builder = Schema::builder();
Expand Down

0 comments on commit 00ce40e

Please sign in to comment.