Updated layout of code

This commit is contained in:
itdominator 2021-04-22 01:32:18 -05:00
parent f77db53c7f
commit 288ed41b58
8 changed files with 9 additions and 7 deletions

View File

@ -1,4 +1,4 @@
from .import View from .view import View
class Window: class Window:

View File

@ -1,6 +1,2 @@
from .Settings import Settings
from .Launcher import Launcher
from .Path import Path
from .View import View
from .Window import Window from .Window import Window
from .WindowController import WindowController from .WindowController import WindowController

View File

@ -9,8 +9,8 @@ from os.path import isdir, isfile, join
# Application imports # Application imports
from . import Path, Settings, Launcher from .utils import Settings, Launcher
from . import Path
class View(Settings, Launcher, Path): class View(Settings, Launcher, Path):
def __init__(self): def __init__(self):

View File

@ -0,0 +1,4 @@
from .utils import *
from .Path import Path
from .View import View

View File

@ -0,0 +1,2 @@
from .Settings import Settings
from .Launcher import Launcher