Skip to content

Commit e5e0b8c

Browse files
committed
Black reformatting
1 parent 8eae3b5 commit e5e0b8c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

tests/integration/test_pymas.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,7 @@ def sklearn_model(train_data):
5959
with warnings.catch_warnings():
6060
warnings.simplefilter("ignore")
6161
model = LogisticRegression(
62-
multi_class="multinomial",
63-
solver="lbfgs",
64-
max_iter=10000
62+
multi_class="multinomial", solver="lbfgs", max_iter=10000
6563
)
6664
model.fit(X, y)
6765
return model

tests/integration/test_tasks.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ def sklearn_logistic_model():
4040
with warnings.catch_warnings():
4141
warnings.simplefilter("ignore")
4242
model = LogisticRegression(
43-
multi_class="multinomial",
44-
solver="lbfgs",
45-
max_iter=10000
43+
multi_class="multinomial", solver="lbfgs", max_iter=10000
4644
)
4745
model.fit(iris.iloc[:, 0:4], iris["Species"])
4846

0 commit comments

Comments
 (0)