Skip to content

Commit 4d2422f

Browse files
paddymulclaude
andcommitted
fix: wrap long line in build.py to satisfy ruff E501
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 8da3a96 commit 4d2422f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/tallyman_xorq/build.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,9 @@ def build_and_persist(
503503
# wraps the sorted expression and loaded bakes in canonical order.
504504
row_count = int(loaded.count().execute())
505505
snap_path = _cached_node_path(loaded)
506-
result_digest_v: str | None = snapshot_file_digest(snap_path) if snap_path and snap_path.exists() else None
506+
result_digest_v: str | None = (
507+
snapshot_file_digest(snap_path) if snap_path and snap_path.exists() else None
508+
)
507509
else:
508510
# Stream full result to force row-level evaluation (catch a
509511
# failing cast / arithmetic at build time) and count rows.

0 commit comments

Comments
 (0)