Skip to content

Commit c098749

Browse files
committed
Code formatting
1 parent b087ccb commit c098749

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pythainlp/util/trie.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"""
99
from typing import Iterable, Iterator, List, Union
1010

11+
1112
class Trie(Iterable[str]):
1213
class Node:
1314
__slots__ = "end", "children"

pythainlp/wsd/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ def get_sense(
7575
See `thai_dict <https://pythainlp.github.io/pythainlp-corpus/thai_dict.html>`_.
7676
7777
Use sentence transformers model from \
78-
`sentence-transformers/paraphrase-multilingual-mpnet-base-v2 <https://huggingface.co/sentence-transformers/paraphrase-multilingual-mpnet-base-v2>`_ \
78+
`sentence-transformers/paraphrase-multilingual-mpnet-base-v2 \
79+
<https://huggingface.co/sentence-transformers/paraphrase-multilingual-mpnet-base-v2>`_ \
7980
for unsupervised word sense disambiguation.
8081
8182
:Example:

0 commit comments

Comments
 (0)