MCPcopy Index your code
hub / github.com/rawpython/remi / __init__

Method __init__

editor/editor_widgets.py:279–284  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

277 """ This class allows to interconnect event signals """
278
279 def __init__(self, *args, **kwargs):
280 super(SignalConnectionManager, self).__init__(*args, **kwargs)
281 self.label = gui.Label('Signal connections', width='100%')
282 self.label.add_class("DialogTitle")
283 self.append(self.label)
284 self.listeners_list = []
285
286 def build_widget_list_from_tree(self, node):
287 self.listeners_list.append(node)

Callers

nothing calls this directly

Calls 3

add_classMethod · 0.80
__init__Method · 0.45
appendMethod · 0.45

Tested by

no test coverage detected