Skip to content

Commit 861e097

Browse files
committed
scikit
1 parent d3337d0 commit 861e097

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/source/how_to/using_scikit_learn.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ After building the configs we define the task function that utilizes these datas
200200
)
201201
202202
# plot the data
203-
x_min, x_max = X[:, 0].min() - 0.5, X[:, 0].max() + 0.5 # type: ignore
204-
y_min, y_max = X[:, 1].min() - 0.5, X[:, 1].max() + 0.5 # type: ignore
203+
x_min, x_max = X[:, 0].min() - 0.5, X[:, 0].max() + 0.5
204+
y_min, y_max = X[:, 1].min() - 0.5, X[:, 1].max() + 0.5
205205
206206
# just plot the dataset first
207207
cm = plt.cm.RdBu # type: ignore

0 commit comments

Comments
 (0)