| Total Complexity | 0 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- |
||
| 2 | |||
| 3 | from plone.dexterity.content import Container |
||
| 4 | from plone.supermodel import model |
||
| 5 | from senaite.core.interfaces import IHideActionsMenu |
||
| 6 | from senaite.core.interfaces import ISampleContainers |
||
| 7 | from zope.interface import implementer |
||
| 8 | |||
| 9 | |||
| 10 | class ISampleContainersSchema(model.Schema): |
||
| 11 | """Schema interface |
||
| 12 | """ |
||
| 13 | |||
| 14 | |||
| 15 | @implementer(ISampleContainers, ISampleContainersSchema, IHideActionsMenu) |
||
| 16 | class SampleContainers(Container): |
||
| 17 | """A container for sample containers |
||
| 18 | """ |
||
| 19 |