diff --git a/pyrogram/client/ext/utils.py b/pyrogram/client/ext/utils.py index 13035ed1..f83557f2 100644 --- a/pyrogram/client/ext/utils.py +++ b/pyrogram/client/ext/utils.py @@ -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