subiquity/system_setup/client/controllers/overview.py

21 lines
470 B
Python
Raw Normal View History

2021-07-16 16:19:11 +00:00
import logging
from subiquity.client.controller import SubiquityTuiController
from subiquitycore.utils import run_command
from system_setup.ui.views.overview import OverviewView
log = logging.getLogger('ubuntu_wsl_oobe.controllers.identity')
class OverviewController(SubiquityTuiController):
async def make_ui(self):
return OverviewView(self)
def cancel(self):
self.app.cancel()
def done(self, result):
2021-07-21 09:07:40 +00:00
self.app.next_screen()