add second showing of refresh screen

This commit is contained in:
Michael Hudson-Doyle 2020-10-12 13:23:43 +13:00
parent 6609114201
commit 50896cc214
3 changed files with 3 additions and 2 deletions

View File

@ -97,6 +97,7 @@ class SubiquityClient(TuiApplication):
"Network", "Network",
"Proxy", "Proxy",
"Mirror", "Mirror",
"Refresh",
"Progress", "Progress",
] ]

View File

@ -13,6 +13,7 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
from subiquitycore.tuicontroller import RepeatedController
from .keyboard import KeyboardController from .keyboard import KeyboardController
from .mirror import MirrorController from .mirror import MirrorController
from .network import NetworkController from .network import NetworkController
@ -29,6 +30,7 @@ __all__ = [
'ProgressController', 'ProgressController',
'ProxyController', 'ProxyController',
'RefreshController', 'RefreshController',
'RepeatedController',
'WelcomeController', 'WelcomeController',
'ZdevController', 'ZdevController',
] ]

View File

@ -13,7 +13,6 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
from ..controller import RepeatedController
from .filesystem import FilesystemController from .filesystem import FilesystemController
from .identity import IdentityController from .identity import IdentityController
from .reboot import RebootController from .reboot import RebootController
@ -24,7 +23,6 @@ __all__ = [
'FilesystemController', 'FilesystemController',
'IdentityController', 'IdentityController',
'RebootController', 'RebootController',
'RepeatedController',
'SnapListController', 'SnapListController',
'SSHController', 'SSHController',
] ]