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

RemarksAddedEvent.__init__()   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nop 3
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