You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 keystutorials/intro/50_configure_mne.py:84:assert 'MNEE_USE_CUUDAA' not in mne.get_config('')
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).
The text was updated successfully, but these errors were encountered:
mne.get_config("")
is mostly there for informational/interactive purposes, it's only used twice in the codebase in ways that should be compatible withdict
too:Originally posted by @drammock in #11159 (comment)
Therefore,
mne.get_config("")
should return adict
with config values as keys and their descriptions as values (instead of a tuple of just config values without any descriptions).The text was updated successfully, but these errors were encountered: