Skip to content

Commit

Permalink
Fix f-string 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tsbinns committed Jun 14, 2024
1 parent 21b7e3d commit 0d9f501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne_connectivity/decoding/decomposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def _check_X(self, X, ndim):
if n_chans != self.info["nchan"]:
raise ValueError(
f"`X` does not match Info\nExpected {n_chans} channels, got "
f"{self.info["nchan"]}"
f"{self.info['nchan']}"
)

def _get_rank_and_ncomps_from_X(self, X):
Expand Down

0 comments on commit 0d9f501

Please sign in to comment.