Skip to content

Commit 98b8598

Browse files
style(vault): format gen_eval_embeddings.py for the widened lint scope
Not my file, and the change carries no meaning: the parse tree before and after is byte-identical under ast.dump, three lines reflowed. It is here because the previous commit put scripts/ under ruff format --check, and leaving this one file unformatted would turn CI red on code nobody touched. Formatting it is the smaller intrusion than excluding it and pretending the scope is wider than it is.
1 parent 7baf527 commit 98b8598

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts/gen_eval_embeddings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ def main() -> int:
9999
)
100100
+ "\n"
101101
)
102-
print(f"wrote embeddings.npz ({len(doc_ids)} docs, {len(q_ids)} questions, dim {doc_vecs.shape[1]})")
102+
print(
103+
f"wrote embeddings.npz ({len(doc_ids)} docs, {len(q_ids)} questions, dim {doc_vecs.shape[1]})"
104+
)
103105
return 0
104106

105107

0 commit comments

Comments
 (0)