"""Parse Error handling blue print""" from flask import Blueprint parseerrbp = Blueprint("parse_error", __name__) @parseerrbp.route("/", methods=["GET"]) def parse_success(): """Indicates success if parsing the file is fails""" return "STUB: Parse error!!!"