annif.views   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 6
dl 0
loc 9
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A home() 0 3 1
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