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

senaite.core.schema.interfaces   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 14
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
3
from zope.schema.interfaces import IInt
4
from zope.schema.interfaces import IField
5
6
7
class IBaseField(IField):
8
    """Senaite base field
9
    """
10
11
12
class IIntField(IInt):
13
    """Senaite integer field
14
    """
15