mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-04-21 01:21:59 +03:00
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:
parent
95e1f5115c
commit
d2c2188a6c
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue
Block a user