Skip to content

Commit

Permalink
4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunwoongko committed Dec 21, 2022
1 parent 22282e8 commit a681a26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from kss._modules.morphemes.split_morphemes import split_morphemes

__ALL__ = [split_sentences, split_morphemes]
__version__ = "4.1.1"
__version__ = "4.1.2"
2 changes: 1 addition & 1 deletion kss/_modules/sentences/sentence_splitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def check_split_end(self) -> Tuple[bool, bool]:

# 예외 2
elif self._check_text(("-", "-", "–")) and not (
self._check_next_skip_sp_pos("SF") or self._check_text(("-", "-", "–"))
self._check_next_skip_sp_pos("SF") or self._check_next_text(("-", "-", "–"))
):
end_split = True
end_split_exception = True
Expand Down

0 comments on commit a681a26

Please sign in to comment.