Fix clippy: inline variable in format string

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Asger F
2026-05-08 14:22:01 +02:00
parent 638dc9380c
commit 9a1c2da5d9

View File

@@ -486,7 +486,7 @@ impl<'a> Visitor<'a> {
let table = self
.schema
.get(&type_name)
.unwrap_or_else(|| panic!("missing extractor schema entry for {:?}", type_name));
.unwrap_or_else(|| panic!("missing extractor schema entry for {type_name:?}"));
let mut valid = true;
let parent_info = match self.stack.last_mut() {
Some(p) if !node.is_extra() => {