mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-09 00:14:50 +00:00
Update Str class
This commit is contained in:
parent
89af1d0827
commit
30c6741ec6
1 changed files with 1 additions and 4 deletions
|
|
@ -32,12 +32,9 @@ log = logging.getLogger(__name__)
|
||||||
|
|
||||||
# TODO: Organize the code better?
|
# TODO: Organize the code better?
|
||||||
|
|
||||||
|
|
||||||
class Str(str):
|
class Str(str):
|
||||||
def __init__(self, value):
|
def __init__(self, value):
|
||||||
super().__init__()
|
str.__init__(value)
|
||||||
|
|
||||||
self._value = value
|
|
||||||
self._markdown = None
|
self._markdown = None
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue