Total Complexity | 0 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 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 |