diff --git a/src/utils/configpanel.py b/src/utils/configpanel.py index 37318813ea..bde4bb54f7 100644 --- a/src/utils/configpanel.py +++ b/src/utils/configpanel.py @@ -839,7 +839,7 @@ def _ask( for panel in config.panels: if interactive and verbose: Moulinette.display( - colorize(f"\n{'='*40}\n>>>> {panel.name}\n{'='*40}", "purple") + colorize(f"\n{'=' * 40}\n>>>> {panel.name}\n{'=' * 40}", "purple") ) # A section or option may only evaluate its conditions (`visible` diff --git a/src/utils/form.py b/src/utils/form.py index b6a6cf9666..41a2ca0bfb 100644 --- a/src/utils/form.py +++ b/src/utils/form.py @@ -2212,13 +2212,15 @@ def ask_questions_and_parse_answers( @overload def parse_raw_options( raw_options: dict[str, Any], serialize: Literal[True] -) -> list[dict[str, Any]]: ... +) -> list[dict[str, Any]]: + ... @overload def parse_raw_options( raw_options: dict[str, Any], serialize: Literal[False] = False -) -> list[AnyOption]: ... +) -> list[AnyOption]: + ... def parse_raw_options(