Skip to content

Commit c29479d

Browse files
romtsnclaude
andcommitted
style(code-mappings): Inline format arg to fix clippy warning
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e7ad070 commit c29479d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/commands/code_mappings/upload.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ pub fn execute(matches: &ArgMatches) -> Result<()> {
116116

117117
let total_errors = merged.errors + merged.batch_errors.len() as u64;
118118
println!(
119-
"Created: {}, Updated: {}, Errors: {}",
120-
merged.created, merged.updated, total_errors
119+
"Created: {}, Updated: {}, Errors: {total_errors}",
120+
merged.created, merged.updated
121121
);
122122

123123
if total_errors > 0 {

0 commit comments

Comments
 (0)