Skip to content

Commit 4e8926c

Browse files
author
UnBonWhisky
committed
fix: remove __repr__ method from SharedClientTheme class
1 parent a53d601 commit 4e8926c

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

discord/shared_client_theme.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,6 @@ def __init__(
105105
def colors(self) -> list[Colour]:
106106
return self.colours
107107

108-
def __repr__(self) -> str:
109-
return (
110-
f"<SharedClientTheme colours={self.colours!r} "
111-
f"gradient_angle={self.gradient_angle} base_mix={self.base_mix} "
112-
f"base_theme={self.base_theme!r}>"
113-
)
114-
115108
def to_dict(self) -> SharedClientThemePayload:
116109
payload: SharedClientThemePayload = {
117110
"colors": [f"{c.value:0>6x}" for c in self.colours],

0 commit comments

Comments
 (0)