Passed
Push — master ( 9e6aa2...b9e514 )
by Ramon
07:36 queued 02:57
created

bika.lims.events.remarks   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 9
dl 0
loc 18
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A RemarksAddedEvent.__init__() 0 3 1
1
# -*- coding: utf-8 -*-
2
3
from zope.interface import Interface
4
from zope.interface import implements
5
6
7
class IRemarksAddedEvent(Interface):
8
    """Remarks Added Event
9
    """
10
11
12
class RemarksAddedEvent(object):
13
    implements(IRemarksAddedEvent)
14
15
    def __init__(self, context, history):
16
        self.context = context
17
        self.history = history
18