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