1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +01:00
tornado got updated, broke pylint
This commit is contained in:
Otto Winter
2019-03-03 16:43:51 +01:00
parent 55caf4f648
commit 8495ce96a3

View File

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