MCPcopy Create free account
hub / github.com/SLiCAP/SLiCAP_python / _refill_params

Method _refill_params

SLiCAP/schematic/model_dialog.py:205–210  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

203 self._type_combo.blockSignals(False)
204
205 def _refill_params(self) -> None:
206 self._table.blockSignals(True)
207 self._table.setRowCount(0)
208 for name in _model_param_names(self._type_combo.currentText()):
209 self._add_row(name, "")
210 self._table.blockSignals(False)
211
212 def _on_type_changed(self, _: str) -> None:
213 if not self._is_editing:

Callers 2

__init__Method · 0.95
_on_type_changedMethod · 0.95

Calls 2

_add_rowMethod · 0.95
_model_param_namesFunction · 0.85

Tested by

no test coverage detected