Commit 85aa2eff authored by Willard's avatar Willard

Add newlines to end of files

parent 8862addd
......@@ -40,4 +40,4 @@ def search():
'stall_name': dish.stall.name,
'image_path': dish.image_path
})
return jsonify(data)
\ No newline at end of file
return jsonify(data)
......@@ -83,4 +83,4 @@ class DishRegisterForm(FlaskForm):
flash('Dish name is taken!')
return False
return True
\ No newline at end of file
return True
......@@ -208,4 +208,4 @@ def unauthorized():
def flash_form_errors(form):
for field, errors in form.errors.items():
for error in errors:
flash(u"Error in the %s field - %s" % (getattr(form, field).label.text, error))
\ No newline at end of file
flash(u"Error in the %s field - %s" % (getattr(form, field).label.text, error))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment