More import and file cleanup

This commit is contained in:
Veronica K. B. Olsen
2020-09-26 13:08:48 +02:00
parent eb66b879c5
commit 635a52fd31
4 changed files with 18 additions and 19 deletions
+9 -9
View File
@@ -9,20 +9,20 @@ from nw.constants.enum import (
)
__all__ = [
"isoLanguage",
"isoCountry",
"nwConst",
"nwRegEx",
"nwFiles",
"nwKeyWords",
"nwLabels",
"nwQuotes",
"nwUnicode",
"isoLanguage",
"nwAlert",
"nwConst",
"nwDocAction",
"nwDocInsert",
"nwFiles",
"nwItemClass",
"nwItemLayout",
"nwItemType",
"nwKeyWords",
"nwLabels",
"nwOutline",
"nwDocInsert",
"nwQuotes",
"nwRegEx",
"nwUnicode",
]
+3 -3
View File
@@ -8,6 +8,9 @@ from nw.core.tohtml import ToHtml
from nw.core.tools import countWords, numberToRoman, numberToWord
__all__ = [
"countWords",
"numberToRoman",
"numberToWord",
"NWDoc",
"NWIndex",
"NWProject",
@@ -15,7 +18,4 @@ __all__ = [
"NWSpellEnchant",
"NWSpellSimple",
"ToHtml",
"countWords",
"numberToRoman",
"numberToWord",
]
+6 -7
View File
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
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.docmerge import GuiDocMerge
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.projtree import GuiProjectTree
from nw.gui.projwizard import GuiProjectWizard
from nw.gui.writingstats import GuiWritingStats
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__ = [
"GuiAbout",
@@ -26,11 +26,12 @@ __all__ = [
"GuiDocEditor",
"GuiDocMerge",
"GuiDocSplit",
"GuiDocViewer",
"GuiDocViewDetails",
"GuiDocViewer",
"GuiItemDetails",
"GuiItemEditor",
"GuiMainMenu",
"GuiMainStatus",
"GuiOutline",
"GuiOutlineDetails",
"GuiPreferences",
@@ -38,8 +39,6 @@ __all__ = [
"GuiProjectSettings",
"GuiProjectTree",
"GuiProjectWizard",
"GuiWritingStats",
"GuiMainStatus",
"GuiIcons",
"GuiTheme",
"GuiWritingStats",
]