diff options
| author | Scott Gasch <[email protected]> | 2021-04-13 13:55:12 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-04-13 13:55:12 -0700 |
| commit | dab5654d392f69fb00bed49cf8ffb80f37642ea5 (patch) | |
| tree | bfba22336306b512e6971c2815a1ec4c479f7297 /ansi.py | |
| parent | 64a9a97fdff29f4bb9eef4e80faaeaa520d59506 (diff) | |
Various sundry changes.
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: |
