浏览代码

solve flake8 error

moritan 9 年前
父节点
当前提交
38b733f92d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      searx/rest-server.py

+ 1
- 1
searx/rest-server.py 查看文件

@@ -145,6 +145,7 @@ def get_locale():
145 145
 
146 146
     return locale
147 147
 
148
+
148 149
 @app.before_request
149 150
 def option_autoreply():
150 151
     """ Always reply 200 on OPTIONS request """
@@ -182,7 +183,6 @@ def set_allow_origin(resp):
182 183
     if request.method != 'OPTIONS' and 'Origin' in request.headers:
183 184
         h['Access-Control-Allow-Origin'] = request.headers['Origin']
184 185
 
185
-
186 186
     return resp
187 187
 
188 188
 if __name__ == '__main__':