Skip to content

Commit

Permalink
Merge pull request #63 from Vainock/fix-constant-function
Browse files Browse the repository at this point in the history
Fix constant function
  • Loading branch information
iandees authored Oct 9, 2024
2 parents 1c6c53c + 416b85a commit 00fc227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openaddr/conform.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ def row_function(sc, row, key, fxn):
elif function == "first_non_empty":
row = row_fxn_first_non_empty(sc, row, key, fxn)
elif function == "constant":
row = row_fxn_constant(sc, row, key, key, fxn)
row = row_fxn_constant(sc, row, key, fxn)

return row

Expand Down

0 comments on commit 00fc227

Please sign in to comment.