Skip to content

Commit 83cdd4d

Browse files
committed
Fix Flake8 E127
1 parent a492a26 commit 83cdd4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hpsklearn/components/linear_model/_quantile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def sklearn_QuantileRegressor(*args, **kwargs):
1414

1515
@validate(params=["solver"],
1616
validation_test=lambda param: not isinstance(param, str) or
17-
param in ["highs-ds", "highs-ipm", "highs", "revised simplex"],
17+
param in ["highs-ds", "highs-ipm", "highs", "revised simplex"],
1818
msg="Invalid parameter '%s' with value '%s'. Value must be in ['highs-ds', 'highs-ipm', 'highs', "
1919
"'revised simplex'].")
2020
def quantile_regression(name: str,

0 commit comments

Comments
 (0)