mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
9 lines
162 B
Python
9 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
|