Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mcencini committed Jan 24, 2024
1 parent afe0cf1 commit b459ad8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/core/io.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
:toctree: generated
:nosignatures:
deepmr.io.read_rawdata
deepmr.io.read_acqheader
```

## Generic I/O routines
Expand Down
4 changes: 2 additions & 2 deletions src/deepmr/io/header/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Acquisition Header API."""

__all__ = ["read_acqheader", "write_acquisition_header"]
__all__ = ["read_acqheader", "write_acqheader"]

import copy
import os
Expand Down Expand Up @@ -218,7 +218,7 @@ def read_acqheader(filepath, *args, device="cpu", verbose=False, **kwargs):
return head


def write_acquisition_header(filename, head, filepath="./", dataformat="hdf5"):
def write_acqheader(filename, head, filepath="./", dataformat="hdf5"):
"""
Write acquisition header to file.
Expand Down

0 comments on commit b459ad8

Please sign in to comment.