Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jdonszelmann committed Oct 23, 2024
1 parent ff97ea7 commit f62d187
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scopegraphs/src/render/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ pub trait RenderScopeData {
self.render_node().is_some()
}

fn explicit_relabel(&self, scope_id: usize) -> Option<String> {
/// Allows you to relabel specific scope IDs, can be useful for documentation purposes.
fn explicit_relabel(&self, _scope_id: usize) -> Option<String> {
None
}
}
Expand Down

0 comments on commit f62d187

Please sign in to comment.