Skip to content

Commit

Permalink
Add missing colon
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrnr committed Feb 11, 2024
1 parent 7197d3f commit 576e68b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybv/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def _chk_events(events, ch_names, n_times):
raise ValueError(f"When array, events must be 2D, but got {events.ndim}")
if events.shape[1] not in (2, 3):
raise ValueError(
"When array, events must have 2 or 3 columns, but got "
"When array, events must have 2 or 3 columns, but got: "
f"{events.shape[1]}"
)
if not all([np.issubdtype(i, np.integer) for i in events.flat]):
Expand Down

0 comments on commit 576e68b

Please sign in to comment.