diff options
Diffstat (limited to 'ansi.py')
| -rwxr-xr-x | ansi.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1620,7 +1620,7 @@ def italic() -> str: def italics() -> str: - return "[3m" + return italic() def underline() -> str: @@ -1632,7 +1632,7 @@ def strikethrough() -> str: def strike_through() -> str: - return "[9m" + return strikethrough() def is_16color(num: int) -> bool: |
