diff --git a/kss/_modules/sentences/sentence_postprocessor.py b/kss/_modules/sentences/sentence_postprocessor.py index 2db87fb..1a90009 100644 --- a/kss/_modules/sentences/sentence_postprocessor.py +++ b/kss/_modules/sentences/sentence_postprocessor.py @@ -31,7 +31,7 @@ def postprocess(self, output_sentences: List[List[Syllable]]) -> List[str]: output_sentences = self._move_unexpected_split_sentences_to_previous( output_sentences ) - # output_sentences = self._move_footnote_to_previous(output_sentences) + output_sentences = self._move_footnote_to_previous(output_sentences) return self._convert_syllables_to_sentences_with_cleaning(output_sentences)