Files
novelWriter/nw/tools/__init__.py
T
2020-05-08 21:02:30 +02:00

16 lines
363 B
Python

# -*- coding: utf-8 -*-
from nw.tools.analyse import TextAnalysis
from nw.tools.legacy import projectMaintenance
from nw.tools.optionstate import OptionState
from nw.tools.translate import numberToWord
from nw.tools.wordcount import countWords
__all__ = [
"TextAnalysis",
"projectMaintenance",
"OptionState",
"numberToWord",
"countWords",
]