mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 23:36:29 +00:00
12 lines
254 B
Python
12 lines
254 B
Python
![]() |
import common
|
||
|
|
||
|
|
||
|
class Manifest(common.Manifest):
|
||
|
def parse(self, data):
|
||
|
super(Manifest, self).parse(data)
|
||
|
self.credentials = data["credentials"]
|
||
|
self.virtualization = data["virtualization"]
|
||
|
|
||
|
def validate(self):
|
||
|
super(Manifest, self).validate()
|