Browse Source

Style fixes

pull/10211/head
blord0 1 month ago
parent
commit
3a8e44150f
  1. 6
      discord/primary_guild.py

6
discord/primary_guild.py

@ -37,6 +37,7 @@ if TYPE_CHECKING:
class PrimaryGuild:
"""Represents the primary guild (formally known as a clan) of a :class:`User`"""
__slots__ = ('_id', 'identity_enabled', '_tag', '_badge', '_state')
if TYPE_CHECKING:
@ -85,7 +86,4 @@ class PrimaryGuild:
return None
def __repr__(self) -> str:
return (
f'<PrimaryGuild id={self.id} identity_enabled={self.identity_enabled} tag={self.tag}'
f' badge={self.badge}>'
)
return f'<PrimaryGuild id={self.id} identity_enabled={self.identity_enabled} tag={self.tag}' f' badge={self.badge}>'

Loading…
Cancel
Save