2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-09-05 00:35:10 +00:00

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