Update Str class

This commit is contained in:
Dan 2018-05-10 15:52:53 +02:00
parent 89af1d0827
commit 30c6741ec6

View File

@ -32,12 +32,9 @@ log = logging.getLogger(__name__)
# TODO: Organize the code better?
class Str(str):
def __init__(self, value):
super().__init__()
self._value = value
str.__init__(value)
self._markdown = None
@property