chore: run cargo format

This commit is contained in:
2025-09-30 16:28:48 +02:00
parent e0331921ee
commit 78fb2e6499

View File

@@ -12,7 +12,7 @@ pub enum E {
impl std::fmt::Display for E {
fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
let string_value = match self {
Value::Bool(value) => match value{
Value::Bool(value) => match value {
true => 1.to_string(),
false => 0.to_string(),
},