From c1b4d1bcd91a6130cace19d693fc2bc65e651457 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 11 Jun 2022 12:29:58 -0700 Subject: [PATCH] get rid of unused code --- jrnl/messages.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/jrnl/messages.py b/jrnl/messages.py index 6483850e..7393f419 100644 --- a/jrnl/messages.py +++ b/jrnl/messages.py @@ -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"),