Skip to content

Commit d6e9784

Browse files
authored
Fix docstrings for get_data() (#13652)
1 parent 4a5479d commit d6e9784

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

mne/utils/docs.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3471,7 +3471,9 @@ def _reflow_param_docstring(docstring, has_first_line=True, width=75):
34713471
{_picks_desc} {_picks_int} {_picks_str}"""
34723472
picks_base_notypes = f"""picks : list of int | list of str | slice | None
34733473
{_picks_desc} {_picks_int} {_picks_str_notypes}"""
3474-
docdict["picks_all"] = _reflow_param_docstring(f"{picks_base} all channels. {reminder}")
3474+
docdict["picks_all"] = _reflow_param_docstring(
3475+
f"{picks_base} all channels. Bad channels are included by default. {reminder}"
3476+
)
34753477
docdict["picks_all_data"] = _reflow_param_docstring(
34763478
f"{picks_base} all data channels. {reminder}"
34773479
)

0 commit comments

Comments
 (0)