Skip to content

Commit

Permalink
MRG: Use explicitly public namespaces (#1165)
Browse files Browse the repository at this point in the history
* MAINT: Use explicitly public namespaces

* FIX: One more
  • Loading branch information
larsoner authored Aug 22, 2023
1 parent 1a195dc commit b5fb303
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mne_bids/dig.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ def template_to_head(info, space, coord_frame="auto", unit="auto", verbose=None)
coordinates.
"""
_validate_type(info, mne.io.Info)
_validate_type(info, mne.Info)
_check_option("space", space, BIDS_STANDARD_TEMPLATE_COORDINATE_SYSTEMS)
_check_option("coord_frame", coord_frame, ("auto", "mri", "mri_voxel", "ras"))
_check_option("unit", unit, ("auto", "m", "mm"))
Expand Down
2 changes: 1 addition & 1 deletion mne_bids/read.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import numpy as np
import mne
from mne import io, read_events, events_from_annotations
from mne.io.pick import pick_channels_regexp
from mne import pick_channels_regexp
from mne.utils import logger, get_subjects_dir
from mne.coreg import fit_matched_points
from mne.transforms import apply_trans
Expand Down
2 changes: 1 addition & 1 deletion mne_bids/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import numpy as np
from mne.channels import make_standard_montage
from mne.io.kit.kit import get_kit_info
from mne.io.pick import pick_types
from mne import pick_types
from mne.utils import warn as _warn, logger, verbose

from mne_bids.tsv_handler import _to_tsv
Expand Down
4 changes: 2 additions & 2 deletions mne_bids/write.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
from scipy import linalg
import mne
from mne.transforms import _get_trans, apply_trans, rotation, translation
from mne import Epochs
from mne import Epochs, channel_type
from mne.io.constants import FIFF
from mne.io.pick import channel_type, _picks_to_idx
from mne.io.pick import _picks_to_idx
from mne.io import BaseRaw, read_fiducials
from mne.channels.channels import _unit2human, _get_meg_system
from mne.chpi import get_chpi_info
Expand Down

0 comments on commit b5fb303

Please sign in to comment.