summaryrefslogtreecommitdiff
path: root/ick2
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-10-02 21:14:59 +0300
committerLars Wirzenius <liw@liw.fi>2018-10-02 21:14:59 +0300
commite34fe17957621386706febab0389d9c00985a611 (patch)
treee73dd2f3b18f2fc0eb2b92b05b3c1bb128fc8d57 /ick2
parent12561d1aaafe162fc3aa36bf303f808c1f89dad2 (diff)
downloadick2-e34fe17957621386706febab0389d9c00985a611.tar.gz
Fix: shut up pylint3
Diffstat (limited to 'ick2')
-rw-r--r--ick2/apibase.py2
-rw-r--r--ick2/client.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/ick2/apibase.py b/ick2/apibase.py
index 6bf399d..c08f7cf 100644
--- a/ick2/apibase.py
+++ b/ick2/apibase.py
@@ -71,7 +71,7 @@ class APIbase:
return ick2.not_found(e)
if isinstance(body, dict):
return ick2.OK(body)
- elif isinstance(body, str):
+ if isinstance(body, str):
return ick2.text_plain(body)
raise Exception('this must not happen')
return wrapper
diff --git a/ick2/client.py b/ick2/client.py
index 39e10f8..3e19e61 100644
--- a/ick2/client.py
+++ b/ick2/client.py
@@ -68,7 +68,6 @@ class HttpAPI:
def post(self, url, headers=None, body=None):
self._send_request(self._session.post, url, headers=headers, body=body)
- return None
def post_auth(self, url, headers=None, body=None, auth=None):
assert auth is not None
@@ -86,7 +85,6 @@ class HttpAPI:
def put(self, url, headers=None, body=None):
self._send_request(self._session.put, url, headers=headers, body=body)
- return None
def _send_request(self, func, url, headers=None, body=None, auth=None):
if headers is None: