Completed
Push — master ( a1e8f3...b95acc )
by Oleksandr
02:23
created

About

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
dl 0
loc 8
ccs 3
cts 3
cp 1
1
# coding: utf-8
2
3 1
from schematics.models import Model
4 1
from schematics.types import StringType
5
6
7 1
class About(Model):
8 1
    name = StringType(
9
        default="",
10
        required=True,
11
    )
12 1
    description = StringType(
13
        default="",
14
        required=True,
15
    )
16