mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 04:35:24 +00:00
Add __repr__ to enumerations
This commit is contained in:
parent
a34ee4b444
commit
5c0806a8a9
@ -22,3 +22,6 @@ from enum import Enum
|
||||
class AutoName(Enum):
|
||||
def _generate_next_value_(self, *args):
|
||||
return self.lower()
|
||||
|
||||
def __repr__(self):
|
||||
return f"pyrogram.enums.{self}"
|
||||
|
Loading…
Reference in New Issue
Block a user