feat: KIAUH v6 - full rewrite of KIAUH in Python #428

Open
dw-0 wants to merge 242 commits from kiauh-v6-dev into master
Showing only changes of commit 8730fc395e - Show all commits

View File

@@ -89,6 +89,7 @@ class Logger:
content: List[str],
custom_title: str = None,
custom_color: DialogCustomColor = None,
end: str = "\n",
) -> None:
dialog_color = Logger._get_dialog_color(title, custom_color)
dialog_title = Logger._get_dialog_title(title, custom_title)
@@ -99,7 +100,7 @@ class Logger:
print(
f"{top}{dialog_title_formatted}{dialog_content}{bottom}",
end="",
end=end,
)
@staticmethod