Skip to content

Commit

Permalink
Add missing option from error
Browse files Browse the repository at this point in the history
  • Loading branch information
tsbinns committed Jun 19, 2024
1 parent 9dd65b6 commit 69c1116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mne_connectivity/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@ def __init__(
):
if isinstance(indices, str) and indices not in ["all", "symmetric"]:
raise ValueError(
'Indices can only be "all", otherwise '
f"should be a list of tuples. It cannot be {indices}."
'Indices can only be "all", "symmetric", or a list of tuples. '
f"It cannot be {indices}."
)

# prepare metadata pandas dataframe and ensure metadata is a Pandas
Expand Down

0 comments on commit 69c1116

Please sign in to comment.