diff options
| author | Rapptz <[email protected]> | 2017-05-30 20:00:46 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-05-30 20:00:46 -0400 |
| commit | d21fb780fda4347d3456110cacee627ed58a605c (patch) | |
| tree | e8a5c85ecb594c0c30d054ab58d8889ccf091997 | |
| parent | [commands] Add escape_markdown parameter for clean_content. (diff) | |
| download | discord.py-d21fb780fda4347d3456110cacee627ed58a605c.tar.xz discord.py-d21fb780fda4347d3456110cacee627ed58a605c.zip | |
Remove unused functions in HTTPClient.
| -rw-r--r-- | discord/http.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/discord/http.py b/discord/http.py index ba850d9d..dfb11b6d 100644 --- a/discord/http.py +++ b/discord/http.py @@ -210,21 +210,6 @@ class HTTPClient: # clean-up just in case yield from r.release() - def get(self, *args, **kwargs): - return self.request('GET', *args, **kwargs) - - def put(self, *args, **kwargs): - return self.request('PUT', *args, **kwargs) - - def patch(self, *args, **kwargs): - return self.request('PATCH', *args, **kwargs) - - def delete(self, *args, **kwargs): - return self.request('DELETE', *args, **kwargs) - - def post(self, *args, **kwargs): - return self.request('POST', *args, **kwargs) - # state management @asyncio.coroutine |