mne.get_config("") is mostly there for informational/interactive purposes, it's only used twice in the codebase in ways that should be compatible with dict too:
$ git grep "get_config('')"
mne/utils/tests/test_config.py:24: assert (len(get_config('')) > 10) # tuple of valid keys
tutorials/intro/50_configure_mne.py:84:assert 'MNEE_USE_CUUDAA' not in mne.get_config('')
Originally posted by @drammock in #11159 (comment)
Therefore, mne.get_config("") should return a dict with config values as keys and their descriptions as values (instead of a tuple of just config values without any descriptions).
mne.get_config("")is mostly there for informational/interactive purposes, it's only used twice in the codebase in ways that should be compatible withdicttoo:Originally posted by @drammock in #11159 (comment)
Therefore,
mne.get_config("")should return adictwith config values as keys and their descriptions as values (instead of a tuple of just config values without any descriptions).