Remove pylint

This commit is contained in:
Guillaume Ayoub
2016-08-02 14:39:20 +02:00
parent 301bb552d7
commit 3e52f34309
5 changed files with 2 additions and 257 deletions

View File

@@ -396,9 +396,6 @@ class Application:
return response(status, headers, answer)
# All these functions must have the same parameters, some are useless
# pylint: disable=W0612,W0613,R0201
def do_DELETE(self, environ, read_collections, write_collections, content,
user):
"""Manage DELETE request."""
@@ -635,5 +632,3 @@ class Application:
answer = xmlutils.report(environ["PATH_INFO"], content, collection)
return client.MULTI_STATUS, headers, answer
# pylint: enable=W0612,W0613,R0201