From 278121382a97f63bc913207cd2269207b08ca391 Mon Sep 17 00:00:00 2001 From: Janghyub Seo Date: Wed, 27 Dec 2023 14:51:30 +0900 Subject: [PATCH] Format code --- src/tools/check/src/main.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/tools/check/src/main.rs b/src/tools/check/src/main.rs index 7b4b385a..dad9d82f 100644 --- a/src/tools/check/src/main.rs +++ b/src/tools/check/src/main.rs @@ -231,9 +231,12 @@ impl Check { )) } } else { - CondResult::Ignore(format!("Current desktop and session type is {} and {}, not KDE and wayland", current_desktop, session_type)) + CondResult::Ignore(format!( + "Current desktop and session type is {} and {}, not KDE and wayland", + current_desktop, session_type + )) } - } , + } } } }