Browse Source
All __all__ to primary_guilds module
pull/10306/head
Steve C
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
6 additions and
0 deletions
-
discord/primary_guild.py
|
|
|
@ -35,6 +35,12 @@ if TYPE_CHECKING: |
|
|
|
from .types.user import PrimaryGuild as PrimaryGuildPayload |
|
|
|
from typing_extensions import Self |
|
|
|
|
|
|
|
# fmt: off |
|
|
|
__all__ = ( |
|
|
|
'PrimaryGuild', |
|
|
|
) |
|
|
|
# fmt: on |
|
|
|
|
|
|
|
|
|
|
|
class PrimaryGuild: |
|
|
|
"""Represents the primary guild identity of a :class:`User` |
|
|
|
|