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

Method __init__

remi/gui.py:2859–2867  ·  view source on GitHub ↗

Args: kwargs: See Widget.__init__()

(self, text='', *args, **kwargs)

Source from the content-addressed store, hash-verified

2857 def value(self, value): self.attributes['value'] = escape(value.replace(' ', ' '), quote=False)
2858
2859 def __init__(self, text='', *args, **kwargs):
2860 """
2861 Args:
2862 kwargs: See Widget.__init__()
2863 """
2864 super(DropDownItem, self).__init__(*args, **kwargs)
2865 self.type = 'option'
2866 self.value = text
2867 self.set_text(text)
2868
2869 def set_text(self, text):
2870 """

Callers

nothing calls this directly

Calls 2

set_textMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected