diff --git a/pyrogram/client/ext/utils.py b/pyrogram/client/ext/utils.py index 07903d0a..a6d6374e 100644 --- a/pyrogram/client/ext/utils.py +++ b/pyrogram/client/ext/utils.py @@ -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