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",
"Proxy",
"Mirror",
"Refresh",
"Progress",
]

View File

@ -13,6 +13,7 @@
# 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/>.
from subiquitycore.tuicontroller import RepeatedController
from .keyboard import KeyboardController
from .mirror import MirrorController
from .network import NetworkController
@ -29,6 +30,7 @@ __all__ = [
'ProgressController',
'ProxyController',
'RefreshController',
'RepeatedController',
'WelcomeController',
'ZdevController',
]

View File

@ -13,7 +13,6 @@
# 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/>.
from ..controller import RepeatedController
from .filesystem import FilesystemController
from .identity import IdentityController
from .reboot import RebootController
@ -24,7 +23,6 @@ __all__ = [
'FilesystemController',
'IdentityController',
'RebootController',
'RepeatedController',
'SnapListController',
'SSHController',
]