mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-07-15 02:22:22 +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`.
|
or from methods such as :meth:`telethon.Client.resolve_username`.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__slots__ = ("_raw",)
|
__slots__ = ("_raw","_client")
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user