Skip to content

Commit 715af24

Browse files
Fixed spelling #202
1 parent 793105b commit 715af24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

semisupervised/ensemble/_RESSEL.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,12 @@ def _validate_params(self, base_estimator, labeled, unlabeled):
171171
"""
172172
if not isinstance(labeled, pd.DataFrame):
173173
raise AttributeError(
174-
"Labeled samples object needs to be a Pandas DataFrame. Not a ",
174+
"Labeled samples object needs to be a Pandas DataFrame. Not ",
175175
type(labeled),
176176
)
177177
if not isinstance(unlabeled, pd.DataFrame):
178178
raise AttributeError(
179-
"Unlabeled samples object needs to be a Pandas DataFrame. " "Not a ",
179+
"Unlabeled samples object needs to be a Pandas DataFrame. Not ",
180180
type(unlabeled),
181181
)
182182
if labeled.shape[1] != unlabeled.shape[1] + 1:

0 commit comments

Comments
 (0)