Appease clippy

This commit is contained in:
2025-07-13 00:46:08 -04:00
parent b6b0a8c22b
commit 065f68e9a8
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -227,7 +227,7 @@ impl Mappings for InputMapping {
for (keyboard_key, keys) in &self.keys {
let name = match keyboard_key {
PhysicalKey::Code(code) => format!("{code:?}"),
k => format!("{:?}", k),
k => format!("{k:?}"),
};
for key in keys.iter() {
results.entry(key).or_default().push(name.clone());