Skip to content

Commit 325569d

Browse files
authored
Fix custom List __repr__ (pyrogram#901)
1 parent 7edfda7 commit 325569d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyrogram/raw/core/list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
class List(TList[Any], TLObject):
2525
def __repr__(self) -> str:
26-
return f"pyrogram.api.core.List([{','.join(TLObject.__repr__(i) for i in self)}])"
26+
return f"pyrogram.raw.core.List([{','.join(TLObject.__repr__(i) for i in self)}])"

0 commit comments

Comments
 (0)