Skip to content

Commit

Permalink
Apply black formatting to pyomo/core/tests/unit/test_sets.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mfripp committed Aug 25, 2024
1 parent e2307ba commit 287daab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyomo/core/tests/unit/test_sets.py
Original file line number Diff line number Diff line change
Expand Up @@ -3345,7 +3345,7 @@ def test_setargs6(self):
model = ConcreteModel()
model.A = Set(initialize=[1, 2])
model.B = Set(model.A, initialize={1: [2, 3], 2: [3, 4]})
model.C = Set(model.A, initialize=lambda m: {x: [x+1, x+2] for x in m.A})
model.C = Set(model.A, initialize=lambda m: {x: [x + 1, x + 2] for x in m.A})
# convert to native data types for easier comparison
B = {k: v.ordered_data() for (k, v) in model.B.items()}
C = {k: v.ordered_data() for (k, v) in model.C.items()}
Expand Down

0 comments on commit 287daab

Please sign in to comment.