Skip to content

Commit

Permalink
Remove events argument
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrnr committed Jul 9, 2024
1 parent 19c3a9e commit fb881c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mnelab/io/writers.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ def write_edf(fname, raw):
raw.export(fname)


def write_bv(fname, raw, events=None):
def write_bv(fname, raw):
"""Export data to BrainVision EEG/VHDR/VMRK file (requires pybv)."""
raw.export(fname=Path(fname).with_suffix(".vhdr"), events=events)
raw.export(fname=Path(fname).with_suffix(".vhdr"))


# this dict contains each supported file extension as a key; the corresponding value is a
Expand Down

0 comments on commit fb881c3

Please sign in to comment.