From a097ba9fcd55abb6a3c8a70fb875e251be9de4ea Mon Sep 17 00:00:00 2001 From: Edan Bainglass Date: Mon, 28 Oct 2024 07:07:45 +0000 Subject: [PATCH] Emphasize "Step 2.2" in plugin outlines message --- src/aiidalab_qe/app/configuration/__init__.py | 2 +- tests/test_configure.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aiidalab_qe/app/configuration/__init__.py b/src/aiidalab_qe/app/configuration/__init__.py index f8885e616..8d73792b3 100644 --- a/src/aiidalab_qe/app/configuration/__init__.py +++ b/src/aiidalab_qe/app/configuration/__init__.py @@ -241,7 +241,7 @@ def _fetch_plugin_settings(self): def toggle_plugin(change, identifier=identifier, info=info): if change["new"]: info.value = ( - f"Customize {identifier} settings in step 2.2 if needed" + f"Customize {identifier} settings in Step 2.2 if needed" ) else: info.value = "" diff --git a/tests/test_configure.py b/tests/test_configure.py index 31a9821e3..509a039cd 100644 --- a/tests/test_configure.py +++ b/tests/test_configure.py @@ -71,6 +71,6 @@ def test_reminder_info(): assert bands_info.value == "" bands_model = model.get_model("bands") bands_model.include = True - assert bands_info.value == "Customize bands settings in step 2.2 if needed" + assert bands_info.value == "Customize bands settings in step 2.2 if needed" bands_model.include = False assert bands_info.value == ""