Skip to content

Commit 67339a1

Browse files
committed
fix: fixed lint
1 parent 5d4a8c9 commit 67339a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autointent/modules/embedding/_logreg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def get_assets(self) -> RetrieverArtifact:
168168
"""
169169
return RetrieverArtifact(embedder_name=self.embedder_name)
170170

171-
def predict(self, utterances: list[str]) -> NDArray[np.float64] | list[NDArray[np.float64]]:
171+
def predict(self, utterances: list[str]) -> NDArray[np.float64]:
172172
embeddings = self._embedder.embed(utterances)
173173
probas = self._classifier.predict_proba(embeddings)
174174

0 commit comments

Comments
 (0)