Closed urig closed 2 years ago
This PR introduces two new methods for the ParamStore ABC and implementation:
rename_key(key, new_key)
list_tags_for_key(key)
Additionally the method list_keys() has been renamed list_keys_for_tag() to improve readability.
list_keys()
list_keys_for_tag()
1 files 1 suites 51s :stopwatch: 212 tests 208 :heavy_check_mark: 4 :zzz: 0 :x:
Results for commit 5a3f9331.
This PR introduces two new methods for the ParamStore ABC and implementation:
rename_key(key, new_key)
renames an existing key to a new key.list_tags_for_key(key)
returns a list of all tags assigned to the key.Additionally the method
list_keys()
has been renamedlist_keys_for_tag()
to improve readability.