fix(ci): format config command

This commit is contained in:
晴天
2026-04-03 00:33:28 +08:00
parent 40399df69b
commit db1f0edc43

View File

@@ -101,7 +101,10 @@ fn panel_version() -> &'static str {
env!("CARGO_PKG_VERSION")
}
fn find_panel_policy_entry<'a>(policy: &'a VersionPolicy, current_version: &str) -> Option<&'a VersionPolicyEntry> {
fn find_panel_policy_entry<'a>(
policy: &'a VersionPolicy,
current_version: &str,
) -> Option<&'a VersionPolicyEntry> {
if let Some(entry) = policy.panels.get(current_version) {
return Some(entry);
}