File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- from .dictionarylib import Dictionary
15+ from typing import TYPE_CHECKING
16+
17+
18+ if TYPE_CHECKING :
19+ from .dictionarylib import Dictionary
1620
1721
1822class Chikkar (object ):
Original file line number Diff line number Diff line change 11dartsclone ~= 0.9.0
2- sortedcontainers ~ =2.1.0
2+ sortedcontainers > =2.1.0
Original file line number Diff line number Diff line change 1616
1717from setuptools import find_packages , setup
1818
19-
20- download_dictionary ()
21-
2219setup (
2320 name = "chikkarpy" ,
2421 use_scm_version = True ,
3734 },
3835 install_requires = [
3936 "dartsclone~=0.9.0" ,
40- "sortedcontainers~ =2.1.0"
37+ "sortedcontainers> =2.1.0"
4138 ]
4239)
40+
41+ # Downloads the Sudachi Synonym dictionary
42+ download_dictionary ()
You can’t perform that action at this time.
0 commit comments