Skip to content

Commit f380c9f

Browse files
committed
fix formatting
1 parent ce18f83 commit f380c9f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/full/visualize/test_convergence.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,13 @@ def test_with_history_numpy_1d(self):
6666
def test_with_history_numpy_2d(self):
6767
"""Test convergence with 2D numpy array (multiple runs)."""
6868
func = SphereFunction(n_dim=2)
69-
history = np.array([
70-
[10, 8, 5, 3, 1],
71-
[12, 9, 6, 4, 2],
72-
[15, 10, 7, 5, 3],
73-
])
69+
history = np.array(
70+
[
71+
[10, 8, 5, 3, 1],
72+
[12, 9, 6, 4, 2],
73+
[15, 10, 7, 5, 3],
74+
]
75+
)
7476

7577
fig = func.plot.convergence(history=history)
7678

0 commit comments

Comments
 (0)