Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward committed Jan 14, 2025
1 parent 865f23e commit ab2f963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loopy/codegen/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def gen_code(inner_codegen_state): # pylint: disable=function-redefined
condition_exprs = ([
constraint_to_cond_expr(cns)
for cns in bounds_checks]
+ list(sorted(pred_checks, key=lambda pred: repr(pred))))
+ sorted(pred_checks, key=lambda pred: repr(pred)))

prev_result = prev_gen_code(inner_codegen_state)

Expand Down

0 comments on commit ab2f963

Please sign in to comment.