1
0
Fork 0
mirror of https://github.com/Radiquum/anixart-patcher.git synced 2025-09-08 12:13:51 +05:00

chore: formatting files

This commit is contained in:
Kentai Radiquum 2025-09-03 18:40:48 +05:00
parent e12967efaf
commit 1e84f31eb0
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 13 additions and 35 deletions

View file

@ -28,14 +28,14 @@ class PatchConfig_ChangeColorTheme(TypedDict):
def apply(patch_config: PatchConfig_ChangeColorTheme) -> bool:
console.print("select color theme to apply (press [bold]enter[/bold] to confirm)")
theme = select(patch_config["themes"], cursor="->", cursor_style="cyan")
if not theme:
console.print(f"theme: default")
return False
console.print(f"theme: {theme}")
theme_attr = patch_config[theme]["attributes"]
theme_text = patch_config[theme]["text"]
theme_files = patch_config[theme]["files"]