mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 20:14:51 +00:00
Fix custom List __repr__ (#901)
This commit is contained in:
parent
7edfda7f41
commit
325569d73f
1 changed files with 1 additions and 1 deletions
|
|
@ -23,4 +23,4 @@ from .tl_object import TLObject
|
|||
|
||||
class List(TList[Any], TLObject):
|
||||
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 a new issue