1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-03-09 18:27:52 +01:00

refactor(script interface): remove reduntanc startup instruction

This commit is contained in:
2025-07-18 17:03:26 +02:00
parent c63aa01757
commit a185f6f5fe

View File

@@ -48,8 +48,6 @@ class ScriptInterface(BECWidget, QWidget):
self.toolbar.show_bundles(["run", "stop"])
self.web_console.write("bec --nogui")
@property
def current_script_id(self):
return self._current_script_id
@@ -104,5 +102,6 @@ if __name__ == "__main__":
app = QApplication(sys.argv)
script_interface = ScriptInterface()
script_interface.resize(800, 600)
script_interface.show()
sys.exit(app.exec_())