Skip to content

Commit

Permalink
import
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinecollas committed Feb 10, 2025
1 parent 67d9e85 commit b399feb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions mne/channels/channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
pick_info,
pick_types,
)
from .._fiff.proj import setup_proj
from .._fiff.proj import _has_eeg_average_ref_proj, setup_proj
from .._fiff.reference import add_reference_channels, set_eeg_reference
from .._fiff.tag import _rename_list
from ..bem import _check_origin
Expand Down Expand Up @@ -994,14 +994,13 @@ def interpolate_to(self, sensors, origin="auto", method="spline", reg=0.0):
.. versionadded:: 1.10.0
"""
from .._fiff.proj import _has_eeg_average_ref_proj
from ..epochs import BaseEpochs, EpochsArray
from ..evoked import Evoked, EvokedArray
from ..forward._field_interpolation import _map_meg_or_eeg_channels
from ..io import RawArray
from ..io.base import BaseRaw
from . import DigMontage
from .interpolation import _make_interpolation_matrix
from .montage import DigMontage

# Check that the method option is valid.
_check_option("method", method, ["spline", "MNE"])
Expand Down

0 comments on commit b399feb

Please sign in to comment.