Skip to content

Commit b738b6f

Browse files
devwhodevsclaude
andcommitted
fix: resolve clippy::print_literal for CI (Rust 1.94)
Inline string literal into format string to avoid print_literal warning on newer clippy versions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 05f18bf commit b738b6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ fn main() -> Result<()> {
320320
let registry = model::ModelRegistry::default();
321321
match action {
322322
ModelsAction::List => {
323-
println!("{:<30} {:>5} {}", "NAME", "DIM", "DESCRIPTION");
323+
println!("{:<30} {:>5} DESCRIPTION", "NAME", "DIM");
324324
println!("{}", "-".repeat(70));
325325
for entry in &registry.entries {
326326
println!("{:<30} {:>5} {}", entry.name, entry.dim, entry.description);

0 commit comments

Comments
 (0)