We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 688549f commit c35a5a9Copy full SHA for c35a5a9
1 file changed
pycompiler_ark/Ui/Gui/Dialogs/BcaslDialog.py
@@ -846,9 +846,9 @@ def _do_save(self) -> None:
846
try:
847
if "plugins" not in self._ark_cfg:
848
self._ark_cfg["plugins"] = {}
849
- self._ark_cfg["plugins"][
850
- "bcasl_enabled"
851
- ] = self._chk_bcasl_enabled.isChecked()
+ self._ark_cfg["plugins"]["bcasl_enabled"] = (
+ self._chk_bcasl_enabled.isChecked()
+ )
852
save_ark_config(str(self._workspace_root), self._ark_cfg)
853
except Exception as e:
854
QMessageBox.warning(
0 commit comments