diff options
| author | Nadir Chowdhury <[email protected]> | 2021-07-21 07:46:39 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-21 02:46:39 -0400 |
| commit | 262a50196dc48a6582bc5785cdea28068166264f (patch) | |
| tree | 717e7e7eb848213d359d2a270e71b0e4d5535636 /discord/flags.py | |
| parent | Remove afk parameter from change_presence (diff) | |
| download | discord.py-262a50196dc48a6582bc5785cdea28068166264f.tar.xz discord.py-262a50196dc48a6582bc5785cdea28068166264f.zip | |
fix typo in ephemeral function definition
Diffstat (limited to 'discord/flags.py')
| -rw-r--r-- | discord/flags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/flags.py b/discord/flags.py index d0e0789f..373a8957 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -288,7 +288,7 @@ class MessageFlags(BaseFlags): return 32 @flag_value - def ephemeral(Self): + def ephemeral(self): """:class:`bool`: Returns ``True`` if the source message is ephemeral. .. versionadded:: 2.0 |