Passed
Push — master ( 4f36a2...55558a )
by Alexander
02:14
created

tcms.rpc.api.forms.testexecution   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
from django import forms
2
3
from tcms.core.contrib.linkreference.models import LinkReference
4
5
6
class LinkReferenceForm(forms.ModelForm):
7
    class Meta:
8
        model = LinkReference
9
        fields = "__all__"
10