From 59cb4b6dc701fce7285c82aa97aedcdd6bfa4cfc Mon Sep 17 00:00:00 2001 From: Piotr Siuszko Date: Thu, 3 Jul 2025 17:13:50 +0200 Subject: [PATCH] Format fix --- crates/bevy_remote/src/schemas/reflect_info.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_remote/src/schemas/reflect_info.rs b/crates/bevy_remote/src/schemas/reflect_info.rs index 786b9c0c67..3f38e33c2f 100644 --- a/crates/bevy_remote/src/schemas/reflect_info.rs +++ b/crates/bevy_remote/src/schemas/reflect_info.rs @@ -524,7 +524,7 @@ impl Serialize for TypeReferencePath { where S: Serializer, { - serializer.serialize_str(&format!("{}", self)) + serializer.serialize_str(&format!("{self}")) } } @@ -1167,7 +1167,7 @@ impl SchemaTypeInfo { }; let schema_id = id .as_ref() - .map(|id| Cow::Owned(format!("urn:bevy:{}", id))) + .map(|id| Cow::Owned(format!("urn:bevy:{id}"))) .unwrap_or_default(); let mut schema = JsonSchemaBevyType { id: schema_id,