Skip to content

Commit e9babd3

Browse files
committed
imported data library
1 parent 9621c8d commit e9babd3

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

pythainlp/cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import io
88
import sys
99
from argparse import ArgumentError, ArgumentParser
10-
from pythainlp.cli import tokenize, soundex, tag, benchmark, misspell
10+
from pythainlp.cli import data, tokenize, soundex, tag, benchmark, misspell
1111

1212
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8")
1313
sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding="utf-8")
@@ -45,7 +45,7 @@ def exit_if_empty(command: str, parser: ArgumentParser) -> None:
4545
"tag": tag,
4646
"benchmark": benchmark,
4747
"misspell": misspell,
48-
48+
"data": data,
4949
}
5050

5151
# Check if a command was provided and if it's one we know

setup.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010

1111
from setuptools import find_packages, setup
1212

13-
"""
14-
constant for frequently use values
15-
"""
16-
1713
PYYAML = "PyYAML>=5.4.1"
1814
PANDAS = "pandas>=0.24"
1915
NUMPY = "numpy>=1.22"

0 commit comments

Comments
 (0)