Merge pull request 'Format current main — prettier gate sweep (Codex)' (#24) from fix/format-current-main into main
This commit is contained in:
commit
22114d05f0
2 changed files with 7 additions and 3 deletions
|
|
@ -348,7 +348,12 @@ fn parse_skill_options(args: &[String]) -> Result<(Option<String>, Option<String
|
||||||
category = Some(value.clone());
|
category = Some(value.clone());
|
||||||
i += 2;
|
i += 2;
|
||||||
}
|
}
|
||||||
other => return Err(format!("unknown register-skill option: {other}\n\n{}", usage())),
|
other => {
|
||||||
|
return Err(format!(
|
||||||
|
"unknown register-skill option: {other}\n\n{}",
|
||||||
|
usage()
|
||||||
|
))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok((description, category))
|
Ok((description, category))
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,7 @@ const OSA_WATCHDOG_STATUS: &str =
|
||||||
const OSA_WATCHDOG_RUN: &str =
|
const OSA_WATCHDOG_RUN: &str =
|
||||||
include_str!("../../../manifests/2026-05-26-osa-watchdog-host-status-run-manifest.json");
|
include_str!("../../../manifests/2026-05-26-osa-watchdog-host-status-run-manifest.json");
|
||||||
const DEBBY_INV: &str = include_str!("../../../manifests/2026-05-26-debby-runtime-inventory.json");
|
const DEBBY_INV: &str = include_str!("../../../manifests/2026-05-26-debby-runtime-inventory.json");
|
||||||
const USB_INV: &str =
|
const USB_INV: &str = include_str!("../../../manifests/2026-06-04-usb-runtime-inventory.json");
|
||||||
include_str!("../../../manifests/2026-06-04-usb-runtime-inventory.json");
|
|
||||||
|
|
||||||
fn roundtrip_eq<T>(value: &T)
|
fn roundtrip_eq<T>(value: &T)
|
||||||
where
|
where
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue