Skip to content

Commit 7f4d7ac

Browse files
committed
fix typing
1 parent 89c6406 commit 7f4d7ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autointent/_pipeline/_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def _refit(self, context: Context) -> None:
229229

230230
context.data_handler.prepare_for_refit()
231231

232-
scoring_module.fit(context.data_handler.train_utterances(0), context.data_handler.train_labels(0))
232+
scoring_module.fit(context.data_handler.train_utterances(0), context.data_handler.train_labels(0)) # type: ignore[arg-type]
233233
scores = scoring_module.predict(context.data_handler.train_utterances(1))
234234

235235
decision_module.fit(scores, context.data_handler.train_labels(1))

0 commit comments

Comments
 (0)