|
|
|
@ -57,7 +57,7 @@ class IOConfig:
|
|
|
|
|
class Initialization (IOConfig):
|
|
|
|
|
def __init__(self,**_args):
|
|
|
|
|
super().__init__(**_args)
|
|
|
|
|
self._config = self.read_config(**_args)
|
|
|
|
|
# self._config = self.read_config(**_args)
|
|
|
|
|
self._args = _args
|
|
|
|
|
#
|
|
|
|
|
# Invoke initialization
|
|
|
|
@ -65,7 +65,7 @@ class Initialization (IOConfig):
|
|
|
|
|
|
|
|
|
|
def reload (self):
|
|
|
|
|
_args = self._args
|
|
|
|
|
|
|
|
|
|
self._config = self.read_config(**_args)
|
|
|
|
|
self._caller = _args['caller'] if 'caller' in _args else None
|
|
|
|
|
if (self._caller):
|
|
|
|
|
self._config['system']['parentContext'] = ''
|
|
|
|
|