clippy moment

This commit is contained in:
Jamie Pine 2025-12-10 14:27:29 -08:00
parent a91c76c147
commit e5b1737caf

View File

@ -46,7 +46,7 @@ fn generate_swift_api_code() -> Result<(), Box<dyn std::error::Error>> {
// Generate the API code using the existing binary
let output = std::process::Command::new("cargo")
.args(&["run", "--bin", "generate_swift_types", "--quiet"])
.args(["run", "--bin", "generate_swift_types", "--quiet"])
.output()?;
if !output.status.success() {