get rid of unused code

This commit is contained in:
Jonathan Wren 2022-06-11 12:29:58 -07:00
parent f1c5cbad30
commit c1b4d1bcd9

View file

@ -20,11 +20,6 @@ class MsgDecoration(Enum):
"callback": lambda x, **_: x,
"args": {},
}
BRACKET = {
# @todo this should be a more robust function
"callback": lambda x, **_: f"[ {x} ]",
"args": {},
}
BOX = {
"callback": Panel,
"args": {
@ -292,14 +287,6 @@ class MsgText(Enum):
class MsgStyle(Enum):
BARE = {
"decoration": MsgDecoration.NONE,
"color": _MsgColor("white"),
}
PLAIN = {
"decoration": MsgDecoration.BRACKET,
"color": _MsgColor("white"),
}
PROMPT = {
"decoration": MsgDecoration.NONE,
"color": _MsgColor("white"),