Source code for openalea.oalab.config.main

# -*- coding: utf-8 -*-

__all__ = ['MainConfig']

from IPython.config.application import Application
from IPython.utils.traitlets import List, Unicode
from openalea.oalab.config.gui import MainWindowConfig

[docs]class MainConfig(Application): classes = List([MainWindowConfig]) config_file = Unicode(u'', config=True, help="Load this config file")
[docs] def initialize(self): self.mainwindow_config = MainWindowConfig(config=self.config)