mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-24 15:59:18 +00:00
Fix custom List __repr__ (#901)
This commit is contained in:
parent
7edfda7f41
commit
325569d73f
@ -23,4 +23,4 @@ from .tl_object import TLObject
|
|||||||
|
|
||||||
class List(TList[Any], TLObject):
|
class List(TList[Any], TLObject):
|
||||||
def __repr__(self) -> str:
|
def __repr__(self) -> str:
|
||||||
return f"pyrogram.api.core.List([{','.join(TLObject.__repr__(i) for i in self)}])"
|
return f"pyrogram.raw.core.List([{','.join(TLObject.__repr__(i) for i in self)}])"
|
||||||
|
Loading…
Reference in New Issue
Block a user