Updated layout of code
This commit is contained in:
parent
f77db53c7f
commit
288ed41b58
|
@ -1,4 +1,4 @@
|
||||||
from .import View
|
from .view import View
|
||||||
|
|
||||||
|
|
||||||
class Window:
|
class Window:
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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):
|
|
@ -0,0 +1,4 @@
|
||||||
|
from .utils import *
|
||||||
|
|
||||||
|
from .Path import Path
|
||||||
|
from .View import View
|
|
@ -0,0 +1,2 @@
|
||||||
|
from .Settings import Settings
|
||||||
|
from .Launcher import Launcher
|
Loading…
Reference in New Issue