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