Skip to content

Commit ca022fc

Browse files
authored
fix: missing > in CategoryChannel.__repr__ method (#2953)
1 parent c5a14eb commit ca022fc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

discord/channel.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2909,9 +2909,7 @@ def __init__(
29092909
self._update(guild, data)
29102910

29112911
def __repr__(self) -> str:
2912-
return (
2913-
f"<CategoryChannel id={self.id} name={self.name!r} position={self.position}"
2914-
)
2912+
return f"<CategoryChannel id={self.id} name={self.name!r} position={self.position}>"
29152913

29162914
def _update(self, guild: Guild, data: CategoryChannelPayload) -> None:
29172915
# This data will always exist

0 commit comments

Comments
 (0)