Passed
Pull Request — 2.x (#1806)
by Ramon
06:55 queued 02:08
created

senaite.core.schema   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 9
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
3
from zope.interface import classImplementsFirst
4
5
from .fields import IntField
6
from .interfaces import IIntField
7
8
classImplementsFirst(IntField, IIntField)
9