mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-07 15:34:52 +00:00
Change sig and parent class init call
This commit is contained in:
parent
33207c2138
commit
0955826b6c
1 changed files with 2 additions and 2 deletions
|
|
@ -33,8 +33,8 @@ log = logging.getLogger(__name__)
|
||||||
# TODO: Organize the code better?
|
# TODO: Organize the code better?
|
||||||
|
|
||||||
class Str(str):
|
class Str(str):
|
||||||
def __init__(self, text):
|
def __init__(self, *args):
|
||||||
str.__init__(text)
|
super().__init__()
|
||||||
self._client = None
|
self._client = None
|
||||||
self._entities = None
|
self._entities = None
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue