File: _fiff_wrap.py

package info (click to toggle)
python-mne 1.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 131,492 kB
  • sloc: python: 213,302; javascript: 12,910; sh: 447; makefile: 144
file content (20 lines) | stat: -rw-r--r-- 579 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ruff: noqa: F401
# Authors: The MNE-Python contributors.
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.

# Backward compat since these were in the public API before switching to _fiff
# (and _empty_info is convenient to keep here for tests and is private)
from .._fiff.meas_info import (
    Info as _info,
)
from .._fiff.meas_info import (
    _empty_info,
    anonymize_info,
    read_fiducials,
    read_info,
    write_fiducials,
    write_info,
)
from .._fiff.open import show_fiff
from .._fiff.pick import get_channel_type_constants  # moved up a level