Skip to content

Commit

Permalink
Fixing unused variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlee94 committed Aug 25, 2024
1 parent d486e85 commit 1048b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idaes/core/util/model_diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -4355,7 +4355,7 @@ def _check_equality_expression(self, node, child_data):
mdata.append(child_data[i])

# Next, call the method to check the sum expression
vals, const, sum_expr = self._check_sum_expression(node, mdata)
vals, const, _ = self._check_sum_expression(node, mdata)

# Next, we need to check for canceling terms.
# In this case, we can safely ignore expressions of the form constant = sum()
Expand Down

0 comments on commit 1048b32

Please sign in to comment.