Change sig and parent class init call

This commit is contained in:
Dan 2018-05-14 00:48:18 +02:00
parent 33207c2138
commit 0955826b6c

View File

@ -33,8 +33,8 @@ log = logging.getLogger(__name__)
# TODO: Organize the code better?
class Str(str):
def __init__(self, text):
str.__init__(text)
def __init__(self, *args):
super().__init__()
self._client = None
self._entities = None