8000 DOC Fix extraneous noqa comments (#23285) · kernc/scikit-learn@25d5dd0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 25d5dd0

Browse files
authored
DOC Fix extraneous noqa comments (scikit-learn#23285)
1 parent 58ea25f commit 25d5dd0

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

sklearn/datasets/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ def load_boston(*, return_X_y=False):
12511251
for the California housing dataset and::
12521252
12531253
from sklearn.datasets import fetch_openml
1254-
housing = fetch_openml(name="house_prices", as_frame=True) # noqa
1254+
housing = fetch_openml(name="house_prices", as_frame=True)
12551255
12561256
for the Ames housing dataset.
12571257

sklearn/linear_model/_logistic.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -874,9 +874,6 @@ class LogisticRegression(LinearClassifierMixin, SparseCoefMixin, BaseEstimator):
874874
:class:`LogisticRegression` and more specifically the
875875
`Table <https://scikit-learn.org/dev/modules/linear_model.html#logistic-regression>`_
876876
summarazing solver/penalty supports.
877-
<!--
878-
# noqa: E501
879-
-->
880877
881878
.. versionadded:: 0.17
882879
Stochastic Average Gradient descent solver.

0 commit comments

Comments
 (0)
0