Skip to content

Commit ca9446d

Browse files
committed
Merge remote-tracking branch 'origin/add-calculate_ngram_counts' into add-calculate_ngram_counts
1 parent 3744e9d commit ca9446d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythainlp/lm/text_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
def calculate_ngram_counts(
1111
list_words: List[str],
1212
n_min: int = 2,
13-
n_max: int = 4)-> Dict[Tuple[str], int]:
13+
n_max: int = 4) -> Dict[Tuple[str], int]:
1414
"""
1515
Calculates the counts of n-grams in the list words for the specified range.
1616

0 commit comments

Comments
 (0)