tornado got updated, broke pylint
This commit is contained in:
Otto Winter 2019-03-03 16:43:51 +01:00
parent 55caf4f648
commit 8495ce96a3
No known key found for this signature in database
GPG key ID: DB66C0BE6013F97E

View file

@ -201,6 +201,7 @@ class DownloadBinaryRequestHandler(BaseHandler):
self.redirect('/login')
return
# pylint: disable=no-value-for-parameter
configuration = self.get_argument('configuration')
storage_path = ext_storage_path(CONFIG_DIR, configuration)
storage_json = StorageJSON.load(storage_path)
@ -355,6 +356,7 @@ class EditRequestHandler(BaseHandler):
if not self.is_authenticated():
self.redirect('/login')
return
# pylint: disable=no-value-for-parameter
configuration = self.get_argument('configuration')
if not is_allowed(configuration):
self.set_status(401)
@ -368,6 +370,7 @@ class EditRequestHandler(BaseHandler):
if not self.is_authenticated():
self.redirect('/login')
return
# pylint: disable=no-value-for-parameter
configuration = self.get_argument('configuration')
if not is_allowed(configuration):
self.set_status(401)