Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mne/_fiff/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.

from ..utils._bunch import BunchConstNamed
from ..utils._bunch import BunchConstNamed, NamedInt

FIFF = BunchConstNamed()

Expand Down Expand Up @@ -1001,7 +1001,7 @@
FIFF.FIFF_UNITM_P = -12
FIFF.FIFF_UNITM_F = -15
FIFF.FIFF_UNITM_A = -18
_ch_unit_mul_named = {
_ch_unit_mul_named: dict[NamedInt, NamedInt] = {
key: key
for key in (
FIFF.FIFF_UNITM_E,
Expand Down
Loading
Loading