Skip to content

Commit cc34a7a

Browse files
committed
fix: apply cargo fmt formatting
1 parent 5b32666 commit cc34a7a

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/commands/primer.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -304,12 +304,7 @@ pub fn generate_primer(options: &PrimerOptions) -> Result<PrimerOutput> {
304304
}
305305

306306
// Select sections based on budget and capabilities
307-
let selected = select_sections(
308-
&config,
309-
options.budget,
310-
&capabilities,
311-
&project_state,
312-
);
307+
let selected = select_sections(&config, options.budget, &capabilities, &project_state);
313308

314309
// Calculate totals
315310
let total_tokens: u32 = selected.iter().map(|s| s.tokens).sum();

0 commit comments

Comments
 (0)