Skip to content

Commit 91c4d8f

Browse files
Georgi Mammen Mullasseryclaude
authored andcommitted
Fix clippy warnings
Fixes empty line after doc comment warnings and other clippy issues to prevent CI failures with -D warnings flag. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
1 parent 1ff7b7d commit 91c4d8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/metrics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub fn compute_isotropy(embeddings: &[Vec<f32>]) -> f32 {
1414
}
1515

1616
let n = embeddings.len();
17-
let d = embeddings[0].len();
17+
let _d = embeddings[0].len();
1818

1919
if n < 2 {
2020
return 0.0;

0 commit comments

Comments
 (0)