fix(Group): missing slot property

this will fix issues with groups not being able to construct,
due to missing `_client` slot
This commit is contained in:
Yaroslav Vorobev 2023-11-07 13:40:06 +03:00 committed by GitHub
parent 95e1f5115c
commit d2c2188a6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ class Group(Chat, metaclass=NoPublicConstructor):
or from methods such as :meth:`telethon.Client.resolve_username`.
"""
__slots__ = ("_raw",)
__slots__ = ("_raw","_client")
def __init__(
self,