mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
12 lines
397 B
Python
12 lines
397 B
Python
from base import BasePartition
|
|
|
|
|
|
class UnformattedPartition(BasePartition):
|
|
|
|
events = [{'name': 'create', 'src': 'nonexistent', 'dst': 'unmapped'},
|
|
{'name': 'map', 'src': 'unmapped', 'dst': 'mapped'},
|
|
{'name': 'unmap', 'src': 'mapped', 'dst': 'unmapped'},
|
|
]
|
|
|
|
def __init__(self, size, previous):
|
|
super(UnformattedPartition, self).__init__(size, None, previous)
|