2013-09-18 00:46:58 +02:00
|
|
|
from abstract import AbstractPartition
|
2013-09-15 13:19:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
class SinglePartition(AbstractPartition):
|
|
|
|
|
2013-10-04 21:12:48 +02:00
|
|
|
initial_state = 'created'
|
|
|
|
|
2013-09-22 21:20:09 +02:00
|
|
|
def _before_create(self, e):
|
2013-10-04 21:12:48 +02:00
|
|
|
pass
|