chore: clean useless conversion after ditching u64

This commit is contained in:
2026-01-12 16:28:54 +01:00
parent 0f79f4adfb
commit 9a10d75304

View File

@@ -2,6 +2,6 @@ use crate::*;
impl From<u32> for Value {
fn from(value: u32) -> Self {
Self::UnsignedInt(value.into())
Self::UnsignedInt(value)
}
}