Skip to content

Commit 3db2fc4

Browse files
committed
Refactor views
1 parent 10b8f2d commit 3db2fc4

11 files changed

Lines changed: 1008 additions & 862 deletions

File tree

openandroidinstaller/openandroidinstaller.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
icons,
3939
)
4040
from loguru import logger
41-
from views import SelectFilesView, StepView, SuccessView, WelcomeView, RequirementsView
42-
from tool_utils import run_command
41+
from views import SelectFilesView, StepView, SuccessView, StartView, RequirementsView
42+
from tooling import run_command
4343

4444
# where to write the logs
4545
logger.add("openandroidinstaller.log")
@@ -75,7 +75,7 @@ def __init__(self):
7575
self.view = Column(expand=True, width=1200)
7676

7777
# create default starter views
78-
welcome_view = WelcomeView(
78+
welcome_view = StartView(
7979
on_confirm=self.confirm,
8080
state=self.state,
8181
)

0 commit comments

Comments
 (0)