source: geniuswebcore/geniusweb/actions/LearningDone.py@ 59

Last change on this file since 59 was 59, checked in by Wouter Pasman, 3 years ago

#44 manual commit of first public release, because this will cause the dist directory to move

File size: 361 bytes
Line 
1from geniusweb.actions.AbstractAction import AbstractAction
2from geniusweb.actions.PartyId import PartyId
3
4class LearningDone ( AbstractAction):
5 '''
6 * Indicates that a party turns away from the negotiation and.
7
8 '''
9 def __init__(self, actor:PartyId ):
10 super().__init__(actor)
11
12 def __repr__(self):
13 return "LearningDone[" + str(self.getActor()) + "]";
14
Note: See TracBrowser for help on using the repository browser.