Passed
Push — 2.x ( a93928...ced756 )
by Jordi
08:02 queued 01:02
created

senaite.core.interfaces.stickers   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 3
dl 0
loc 8
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
3
from zope.interface import Interface
4
5
6
class IGetStickerTemplates(Interface):
7
    """Marker interface to get stickers for a specific content type.
8
9
    An IGetStickerTemplates adapter should return a result with the
10
    following format:
11
12
    :return: [{'id': <template_id>,
13
             'title': <template_title>}, ...]
14
    """
15