Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MRG: Use explicitly public namespaces #1165

Merged
merged 2 commits into from
Aug 22, 2023
Merged
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
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