コード例 #1
0
 def __init__(self, ui, website, config=None):
     UIElement.__init__(self, ui)
     self.editor_ui = None
     self.website = website
     self.config = config or copy.deepcopy(self.default_config)
コード例 #2
0
 def __init__(self, ui, website, config=None):
     UIElement.__init__(self, ui)
     self.website = website
     self.config = config or self.default_config.copy()
コード例 #3
0
ファイル: extensions.py プロジェクト: Random-Primate/ajenti-v
 def __init__(self, ui, website, config=None):
     UIElement.__init__(self, ui)
     self.website = website
     self.config = config or self.default_config
コード例 #4
0
 def __init__(self, ui, website, config=None):
     UIElement.__init__(self, ui)
     self.editor_ui = None
     self.website = website
     self.config = config or copy.deepcopy(self.default_config)