diff options
| author | Rapptz <[email protected]> | 2017-01-14 19:22:26 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-14 19:22:26 -0500 |
| commit | 92dd519b1a00fd4969bacd46fcb91b552f1a321a (patch) | |
| tree | 5965635cb7dd22f2f98aa7feeda82a0cc5d2724a /discord/user.py | |
| parent | [commands] Split process_commands into lower level bits. (diff) | |
| download | discord.py-92dd519b1a00fd4969bacd46fcb91b552f1a321a.tar.xz discord.py-92dd519b1a00fd4969bacd46fcb91b552f1a321a.zip | |
Remove _get_guild_id from Messageable ABC.
Diffstat (limited to 'discord/user.py')
| -rw-r--r-- | discord/user.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/discord/user.py b/discord/user.py index bbc6d1cc..c08a3fb7 100644 --- a/discord/user.py +++ b/discord/user.py @@ -91,9 +91,6 @@ class User(discord.abc.Messageable): ch = yield from self.create_dm() return ch - def _get_guild_id(self): - return None - @property def dm_channel(self): """Returns the :class:`DMChannel` associated with this user if it exists. |