More import and file cleanup
This commit is contained in:
@@ -9,20 +9,20 @@ from nw.constants.enum import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"isoLanguage",
|
|
||||||
"isoCountry",
|
"isoCountry",
|
||||||
"nwConst",
|
"isoLanguage",
|
||||||
"nwRegEx",
|
|
||||||
"nwFiles",
|
|
||||||
"nwKeyWords",
|
|
||||||
"nwLabels",
|
|
||||||
"nwQuotes",
|
|
||||||
"nwUnicode",
|
|
||||||
"nwAlert",
|
"nwAlert",
|
||||||
|
"nwConst",
|
||||||
"nwDocAction",
|
"nwDocAction",
|
||||||
|
"nwDocInsert",
|
||||||
|
"nwFiles",
|
||||||
"nwItemClass",
|
"nwItemClass",
|
||||||
"nwItemLayout",
|
"nwItemLayout",
|
||||||
"nwItemType",
|
"nwItemType",
|
||||||
|
"nwKeyWords",
|
||||||
|
"nwLabels",
|
||||||
"nwOutline",
|
"nwOutline",
|
||||||
"nwDocInsert",
|
"nwQuotes",
|
||||||
|
"nwRegEx",
|
||||||
|
"nwUnicode",
|
||||||
]
|
]
|
||||||
|
|||||||
+3
-3
@@ -8,6 +8,9 @@ from nw.core.tohtml import ToHtml
|
|||||||
from nw.core.tools import countWords, numberToRoman, numberToWord
|
from nw.core.tools import countWords, numberToRoman, numberToWord
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
|
"countWords",
|
||||||
|
"numberToRoman",
|
||||||
|
"numberToWord",
|
||||||
"NWDoc",
|
"NWDoc",
|
||||||
"NWIndex",
|
"NWIndex",
|
||||||
"NWProject",
|
"NWProject",
|
||||||
@@ -15,7 +18,4 @@ __all__ = [
|
|||||||
"NWSpellEnchant",
|
"NWSpellEnchant",
|
||||||
"NWSpellSimple",
|
"NWSpellSimple",
|
||||||
"ToHtml",
|
"ToHtml",
|
||||||
"countWords",
|
|
||||||
"numberToRoman",
|
|
||||||
"numberToWord",
|
|
||||||
]
|
]
|
||||||
|
|||||||
+6
-7
@@ -1,7 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from nw.gui.about import GuiAbout
|
from nw.gui.about import GuiAbout
|
||||||
from nw.gui.buildnovel import GuiBuildNovel
|
from nw.gui.build import GuiBuildNovel
|
||||||
from nw.gui.doceditor import GuiDocEditor
|
from nw.gui.doceditor import GuiDocEditor
|
||||||
from nw.gui.docmerge import GuiDocMerge
|
from nw.gui.docmerge import GuiDocMerge
|
||||||
from nw.gui.docsplit import GuiDocSplit
|
from nw.gui.docsplit import GuiDocSplit
|
||||||
@@ -16,9 +16,9 @@ from nw.gui.projload import GuiProjectLoad
|
|||||||
from nw.gui.projsettings import GuiProjectSettings
|
from nw.gui.projsettings import GuiProjectSettings
|
||||||
from nw.gui.projtree import GuiProjectTree
|
from nw.gui.projtree import GuiProjectTree
|
||||||
from nw.gui.projwizard import GuiProjectWizard
|
from nw.gui.projwizard import GuiProjectWizard
|
||||||
from nw.gui.writingstats import GuiWritingStats
|
|
||||||
from nw.gui.statusbar import GuiMainStatus
|
from nw.gui.statusbar import GuiMainStatus
|
||||||
from nw.gui.theme import GuiIcons, GuiTheme
|
from nw.gui.theme import GuiTheme
|
||||||
|
from nw.gui.writingstats import GuiWritingStats
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"GuiAbout",
|
"GuiAbout",
|
||||||
@@ -26,11 +26,12 @@ __all__ = [
|
|||||||
"GuiDocEditor",
|
"GuiDocEditor",
|
||||||
"GuiDocMerge",
|
"GuiDocMerge",
|
||||||
"GuiDocSplit",
|
"GuiDocSplit",
|
||||||
"GuiDocViewer",
|
|
||||||
"GuiDocViewDetails",
|
"GuiDocViewDetails",
|
||||||
|
"GuiDocViewer",
|
||||||
"GuiItemDetails",
|
"GuiItemDetails",
|
||||||
"GuiItemEditor",
|
"GuiItemEditor",
|
||||||
"GuiMainMenu",
|
"GuiMainMenu",
|
||||||
|
"GuiMainStatus",
|
||||||
"GuiOutline",
|
"GuiOutline",
|
||||||
"GuiOutlineDetails",
|
"GuiOutlineDetails",
|
||||||
"GuiPreferences",
|
"GuiPreferences",
|
||||||
@@ -38,8 +39,6 @@ __all__ = [
|
|||||||
"GuiProjectSettings",
|
"GuiProjectSettings",
|
||||||
"GuiProjectTree",
|
"GuiProjectTree",
|
||||||
"GuiProjectWizard",
|
"GuiProjectWizard",
|
||||||
"GuiWritingStats",
|
|
||||||
"GuiMainStatus",
|
|
||||||
"GuiIcons",
|
|
||||||
"GuiTheme",
|
"GuiTheme",
|
||||||
|
"GuiWritingStats",
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user