Merge pull request #843 from mwhudson/dead-code

remove some dead code
This commit is contained in:
Michael Hudson-Doyle 2020-09-23 16:08:01 +12:00 committed by GitHub
commit f37f2b08aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 25 deletions

View File

@ -16,12 +16,10 @@
import asyncio
import logging
import os
import platform
import shlex
import signal
import sys
import traceback
import urwid
import aiohttp
@ -141,9 +139,6 @@ class Subiquity(TuiApplication):
]
def __init__(self, opts, block_log_dir):
if not opts.bootloader == 'none' and platform.machine() != 's390x':
self.controllers.remove("Zdev")
if is_linux_tty():
self.input_filter = KeyCodesFilter()
else:
@ -180,10 +175,6 @@ class Subiquity(TuiApplication):
self.client = make_client_for_conn(API, self.conn, self.resp_hook)
self.autoinstall_config = {}
self.report_to_show = None
self.show_progress_handle = None
self.progress_shown_time = self.aio_loop.time()
self.progress_showing = False
self.error_reporter = ErrorReporter(
self.context.child("ErrorReporter"), self.opts.dry_run, self.root,
self.client)
@ -243,16 +234,6 @@ class Subiquity(TuiApplication):
] + sys.argv[1:]
os.execvp(cmdline[0], cmdline)
def make_screen(self, input=None, output=None):
if self.interactive():
return super().make_screen(input, output)
else:
r, w = os.pipe()
s = urwid.raw_display.Screen(
input=os.fdopen(r), output=open('/dev/null', 'w'))
s.get_cols_rows = lambda: (80, 24)
return s
def get_primary_tty(self):
tty = '/dev/tty1'
for work in self.kernel_cmdline:
@ -410,12 +391,6 @@ class Subiquity(TuiApplication):
async def confirm_install(self):
self.base_model.confirm()
def _cancel_show_progress(self):
if self.show_progress_handle is not None:
self.ui.block_input = False
self.show_progress_handle.cancel()
self.show_progress_handle = None
def interactive(self):
if not self.autoinstall_config:
return True