From 6350fa1c11b90542b7f98be597ea1276d71ab8fe Mon Sep 17 00:00:00 2001 From: TanyaAgarwal28 <8979149361t@gmail.com> Date: Tue, 10 Oct 2023 21:19:30 +0530 Subject: [PATCH] Bug Fix 11282: config.getini returns an empty list for an option of type string absent in INI file --- changelog/11456.bugfix.rst | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 changelog/11456.bugfix.rst diff --git a/changelog/11456.bugfix.rst b/changelog/11456.bugfix.rst deleted file mode 100644 index 06ddea229..000000000 --- a/changelog/11456.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -In this, we propose a solution that ensures the generation of unique identifiers for ParameterSets in the make_unique_parameterset_ids method in Python.py class. It appends numeric suffixes to identifiers, ensuring uniqueness even when the original identifiers have digit endings. -If the id ends in a digit, make then new id f"{id}_{suffix}". If the new id is already in the set of seen ids, increment the suffix number and try again. This is sure to work, and even be fast in practice, because our maximum suffix is the number of duplicate ids we started with.