Last change
on this file since 73 was 73, checked in by Bart Vastenhouw, 3 years ago |
Fix for IssueValue hashcode.
|
File size:
549 bytes
|
Rev | Line | |
---|
[73] | 1 | from geniusweb.actions.Action import Action
|
---|
| 2 | from geniusweb.inform.Inform import Inform
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | class ActionDone (Inform):
|
---|
| 6 | '''
|
---|
| 7 | Informs that someone did an action
|
---|
| 8 | '''
|
---|
| 9 |
|
---|
| 10 | def __init__(self, action:Action ):
|
---|
| 11 | self._action = action;
|
---|
| 12 |
|
---|
| 13 |
|
---|
| 14 | def getAction(self) -> Action:
|
---|
| 15 | return self._action;
|
---|
| 16 |
|
---|
| 17 | def __repr__(self):
|
---|
| 18 | return "ActionDone[" + str(self._action) + "]"
|
---|
| 19 |
|
---|
| 20 | def __eq__(self, other):
|
---|
| 21 | return isinstance(other, self.__class__) \
|
---|
| 22 | and super().__eq__(other) \
|
---|
| 23 | and self._action == other._action
|
---|
| 24 |
|
---|
| 25 | def __hash__(self):
|
---|
| 26 | return hash(self._action) |
---|
Note:
See
TracBrowser
for help on using the repository browser.