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