Fixed broken imports (#1548)
This commit is contained in:
parent
16ca69540c
commit
9db6a25a08
|
|
@ -3,7 +3,7 @@ from enum import Enum, auto
|
||||||
from os import system
|
from os import system
|
||||||
from typing import Dict, List, Union, Any, TYPE_CHECKING, Optional, Callable
|
from typing import Dict, List, Union, Any, TYPE_CHECKING, Optional, Callable
|
||||||
|
|
||||||
from archinstall.lib.menu.simple_menu import TerminalMenu
|
from .simple_menu import TerminalMenu
|
||||||
|
|
||||||
from ..exceptions import RequirementError
|
from ..exceptions import RequirementError
|
||||||
from ..output import log
|
from ..output import log
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,7 @@ class TranslationHandler:
|
||||||
"""
|
"""
|
||||||
Set the provided font as the new terminal font
|
Set the provided font as the new terminal font
|
||||||
"""
|
"""
|
||||||
from archinstall import SysCommand, log
|
from .general import SysCommand, log
|
||||||
try:
|
try:
|
||||||
log(f'Setting font: {font}', level=logging.DEBUG)
|
log(f'Setting font: {font}', level=logging.DEBUG)
|
||||||
SysCommand(f'setfont {font}')
|
SysCommand(f'setfont {font}')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue