Skip to content

Commit e0c5edb

Browse files
committed
fix: no-any return
1 parent 67339a1 commit e0c5edb

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
@@ -175,4 +175,4 @@ def predict(self, utterances: list[str]) -> NDArray[np.float64]:
175175
if self._multilabel:
176176
probas = np.stack(probas, axis=1)[..., 1]
177177

178-
return probas
178+
return probas # type: ignore[no-any-return]

0 commit comments

Comments
 (0)