return tiramisuAPI
This commit is contained in:
@ -923,13 +923,14 @@ class TiramisuContextConfig(TiramisuContext):
|
||||
return TiramisuAPI(self.config_bag.context.duplicate(session_id))
|
||||
|
||||
def _m_new(self, name):
|
||||
self.config_bag.context.new_config(name)
|
||||
return TiramisuAPI(self.config_bag.context.new_config(name))
|
||||
|
||||
def _m_list(self):
|
||||
return self._g_list()
|
||||
|
||||
def _g_list(self):
|
||||
return self.config_bag.context.cfgimpl_get_children()
|
||||
for child in self.config_bag.context.cfgimpl_get_children():
|
||||
yield TiramisuAPI(child)
|
||||
|
||||
def __getattr__(self,
|
||||
name: str) -> Callable:
|
||||
|
Reference in New Issue
Block a user