fix: correct flake8 issues

This commit is contained in:
Jose Diaz-Gonzalez
2017-07-16 23:59:35 -06:00
committed by Alex Quick
parent a22594b891
commit fc1129c728

View File

@@ -7,6 +7,7 @@ app = Flask(__name__)
def hello():
return 'python/flask'
@app.route('/<env>')
def get_enc(env):
val = os.environ.get(env, None)
@@ -14,5 +15,3 @@ def get_enc(env):
return val
else:
abort(404)