Passed
Push — master ( c4c37f...3727b7 )
by Alexander
02:26
created

plugin.views.example()   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nop 1
1
# Copyright (c) 2019 Alexander Todorov <[email protected]>
2
3
# Licensed under the GPL 2.0: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
4
5
from django.shortcuts import render
6
7
8
def example(request):
9
    """An example view of Telemetry plugin"""
10
    return render(request, 'a_fake_plugin/example.html')
11