10 lines
165 B
Python
10 lines
165 B
Python
|
|
class interface_check_kind(object):
|
||
|
|
|
||
|
|
def normalize_conf_node(self, node):
|
||
|
|
raise NotImplementedError
|
||
|
|
|
||
|
|
|
||
|
|
def run(self, check_data):
|
||
|
|
raise NotImplementedError
|
||
|
|
|