Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Dazhong Xia <[email protected]>
  • Loading branch information
zschira and jdangerx authored Dec 19, 2024
1 parent e4b6d3c commit 9015db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pudl/transform/vcerare.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def check_rows(context: AssetCheckExecutionContext) -> AssetCheckResult:
vce = _load_duckdb_table() # noqa: F841
(length,) = duckdb.query("SELECT COUNT(*) FROM vce").fetchone()
if (
expecteded_length := row_counts[context.op_execution_context.job_name]
expected_length := row_counts[context.op_execution_context.job_name]
) != length:
return AssetCheckResult(
passed=False,
Expand Down

0 comments on commit 9015db7

Please sign in to comment.