Skip to content

Commit 806c8fa

Browse files
Fixed docstrings #202
1 parent 8fd6c34 commit 806c8fa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

semisupervised/CoTraining.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(
8787
self.h1, self.h2 = configs
8888
except ValueError:
8989
raise AttributeError(
90-
"Classifiers and/or params were not " "correctly passed."
90+
"Classifiers and/or params were not correctly passed."
9191
)
9292

9393
def fit(self, samples, y):

semisupervised/DemocraticCoLearning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def __init__(
9595
self.h1, self.h2, self.h3 = configs
9696
except ValueError:
9797
raise AttributeError(
98-
"Classifiers and/or params were not " "correctly passed."
98+
"Classifiers and/or params were not correctly passed."
9999
)
100100

101101
def fit(self, samples, y):

semisupervised/TriTraining.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__(
8888
self.hj, self.hk, self.hi = configs
8989
except ValueError:
9090
raise AttributeError(
91-
"Classifiers and/or params were not " "correctly passed."
91+
"Classifiers and/or params were not correctly passed."
9292
)
9393

9494
self.random_state = (

0 commit comments

Comments
 (0)