by setting values in the default style to 'none' we avoid the rich markup errors in console.highlight

add comment to util.check_mark and test only NO_COLOR

patch bump
This commit is contained in:
2025-06-22 10:14:46 +01:00
parent 55e60ff977
commit 7bec573ef9
9 changed files with 19 additions and 19 deletions

View File

@@ -21,9 +21,9 @@ class Style:
name: str = 'no_colour'
description: str = 'Style disabled'
border: str | None = None
column: str | None = None
highlight: str | None = None
border: str = 'none'
column: str = 'none'
highlight: str = 'none'
no_border: bool = False
def __post_init__(self):