default to C0 mode

This commit is contained in:
Jeffrey C. Ollie 2023-10-29 16:51:36 -05:00
parent 2a2e52144c
commit 78090e80b9
Signed by: jeff
GPG key ID: 6F86035A6D97044E

View file

@ -191,7 +191,7 @@ class ANSI:
mode: Mode
wrap: bool
def __init__(self: Self, mode: Mode, wrap: bool = False) -> None:
def __init__(self: Self, mode: Mode = Mode.C0, wrap: bool = False) -> None:
self.mode = mode
self.wrap = wrap