tiramisu/config.py: _cfgimpl_subconfigs is not used
This commit is contained in:
parent
d100d66548
commit
88ea962d82
|
@ -31,8 +31,7 @@ from tiramisu.value import Values
|
||||||
|
|
||||||
class SubConfig(object):
|
class SubConfig(object):
|
||||||
"sub configuration management entry"
|
"sub configuration management entry"
|
||||||
__slots__ = ('_cfgimpl_descr', '_cfgimpl_subconfigs', '_cfgimpl_parent',
|
__slots__ = ('_cfgimpl_descr', '_cfgimpl_parent', '_cfgimpl_context')
|
||||||
'_cfgimpl_context')
|
|
||||||
|
|
||||||
def __init__(self, descr, parent, context): # FIXME , slots):
|
def __init__(self, descr, parent, context): # FIXME , slots):
|
||||||
""" Configuration option management master class
|
""" Configuration option management master class
|
||||||
|
@ -47,7 +46,6 @@ class SubConfig(object):
|
||||||
# main option description
|
# main option description
|
||||||
self._cfgimpl_descr = descr
|
self._cfgimpl_descr = descr
|
||||||
# sub option descriptions
|
# sub option descriptions
|
||||||
self._cfgimpl_subconfigs = None
|
|
||||||
self._cfgimpl_parent = parent
|
self._cfgimpl_parent = parent
|
||||||
self._cfgimpl_context = context
|
self._cfgimpl_context = context
|
||||||
#self._cfgimpl_build(slots)
|
#self._cfgimpl_build(slots)
|
||||||
|
|
Loading…
Reference in New Issue