We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c3b02b commit 7f627bfCopy full SHA for 7f627bf
1 file changed
TM1py/Services/SubsetService.py
@@ -214,11 +214,12 @@ def get_element_names(
214
:param dimension_name: Name of the dimension.
215
:param hierarchy_name: Name of the hierarchy.
216
:param subset: Subset name (str) or Subset object.
217
+ :param subset_name: (legacy) subset name, supported for backwards compatibility.
218
:param private: Whether the subset is private.
219
:param kwargs: Additional arguments.
220
:return: List of element names.
221
"""
- # backward compatibility for subset_name
222
+ # backward compatibility for legacy 'subset_name' parameter (Issue #1302)
223
if "subset_name" in kwargs:
224
if subset is not None:
225
raise ValueError("Only one parameter 'subset' or 'subset_name' may be provided.")
0 commit comments