8 lines
162 B
Python
8 lines
162 B
Python
from yamale.validators import Validator
|
|
import yaml
|
|
|
|
class Component(Validator):
|
|
tag = "comp"
|
|
|
|
def _is_valid(self, value):
|
|
return 'type' in value
|