Skip to content

Commit b9025aa

Browse files
authored
Merge pull request #273 from PyThaiNLP/ner-tag
Add test cases for NER
2 parents 90bb505 + eb09bc9 commit b9025aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythainlp/tag/named_entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(self):
9090
)
9191

9292
def get_ner(
93-
self, text: str, pos: bool = True, tag: bool = False
93+
self, text: str, pos: bool = True, tag: bool = False
9494
) -> Union[List[Tuple[str, str]], List[Tuple[str, str, str]]]:
9595
"""
9696
This function tags named-entitiy from text in IOB format.

0 commit comments

Comments
 (0)