aboutsummaryrefslogtreecommitdiff
path: root/qc_app/parse_error.py
blob: 1414b78800986ad9de54870f2bce64982e15db2f (plain)
1
2
3
4
5
6
7
8
9
"""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!!!"