mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
9 lines
149 B
Python
9 lines
149 B
Python
from abstract import AbstractPartition
|
|
|
|
|
|
class SinglePartition(AbstractPartition):
|
|
|
|
initial_state = 'created'
|
|
|
|
def _before_create(self, e):
|
|
pass
|