Skip to content

Commit 83e8a53

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent aa254cc commit 83e8a53

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/src/dense_qp_solve.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,10 @@ def test_solve_qpsolvers_problem(self):
376376
)
377377
file_path = os.path.dirname(os.path.realpath(__file__))
378378
data_path = os.path.join(file_path, "..", "data")
379-
m = spio.loadmat(os.path.join(data_path, "simple_qp_with_inifinity_lower_bound.mat"), squeeze_me=True)
379+
m = spio.loadmat(
380+
os.path.join(data_path, "simple_qp_with_inifinity_lower_bound.mat"),
381+
squeeze_me=True,
382+
)
380383
P = m["P"].astype(float)
381384
q = m["q"].astype(float)
382385
A = m["A"].astype(float).reshape((1, 3))

0 commit comments

Comments
 (0)