Skip to content

Commit 0ab8bee

Browse files
unhappychoiceclaude
andcommitted
fix: format code with cargo fmt
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3ef85d8 commit 0ab8bee

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

src/extractor/parser.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,6 @@ impl CodeExtractor {
352352
let end_line = node.end_position().row + 1;
353353
let original_indentation = node.start_position().column;
354354

355-
356355
let chunk_type = match capture_name {
357356
"function" => ChunkType::Function,
358357
"method" => ChunkType::Method,

src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ struct Cli {
2323
#[arg(long, default_value_t = 3)]
2424
stages: usize,
2525

26-
2726
/// Glob patterns for files to include
2827
#[arg(long)]
2928
include: Option<Vec<String>>,
@@ -96,7 +95,6 @@ fn main() -> anyhow::Result<()> {
9695
options.exclude_patterns = exclude_patterns;
9796
}
9897

99-
10098
// Show loading screen during startup
10199
let loading_screen = match LoadingScreen::new() {
102100
Ok(screen) => Some(screen),

tests/extractor_unit_tests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ pub struct Config {
9090
assert!(matches!(chunks[0].chunk_type, ChunkType::Struct));
9191
}
9292

93-
9493
#[test]
9594
fn test_gitignore_respected() {
9695
let temp_dir = TempDir::new().unwrap();

0 commit comments

Comments
 (0)