annif.views.home()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nop 0
1
from flask import Blueprint, render_template
2
3
bp = Blueprint("app", __name__)
4
5
6
@bp.route("/")
7
def home():
8
    return render_template("home.html")
9