Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelzwiers committed Dec 8, 2024
1 parent 9f91039 commit ca45ab6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bidscoin/plugins/events2bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
from typing import Union
from bids_validator import BIDSValidator
from pathlib import Path
from bidscoin import bids
from bidscoin import bids, is_hidden
from bidscoin.plugins import PluginInterface, EventsParser
from bidscoin.bids import BidsMap, DataFormat, is_hidden, Plugin
from bidscoin.bids import BidsMap, DataFormat, Plugin
# TODO: from convert_eprime.utils import ..

LOGGER = logging.getLogger(__name__)
Expand Down
4 changes: 2 additions & 2 deletions bidscoin/plugins/nibabel2bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
from bids_validator import BIDSValidator
from typing import Union
from pathlib import Path
from bidscoin import bids
from bidscoin.bids import BidsMap, DataFormat, Plugin, is_hidden
from bidscoin import bids, is_hidden
from bidscoin.bids import BidsMap, DataFormat, Plugin
from bidscoin.plugins import PluginInterface

try:
Expand Down
4 changes: 2 additions & 2 deletions bidscoin/plugins/spec2nii2bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
from typing import Union
from bids_validator import BIDSValidator
from pathlib import Path
from bidscoin import run_command, bids, due, Doi
from bidscoin.bids import BidsMap, DataFormat, Plugin, is_hidden
from bidscoin import run_command, is_hidden, bids, due, Doi
from bidscoin.bids import BidsMap, DataFormat, Plugin
from bidscoin.plugins import PluginInterface

LOGGER = logging.getLogger(__name__)
Expand Down
1 change: 1 addition & 0 deletions docs/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ The above API is illustrated in more detail in the placeholder Python code below
from pathlib import Path
from bidscoin.due import due, Doi
from bidscoin.bids import BidsMap, EventsParser, is_hidden
from bidscoin.plugins import PluginInterface
LOGGER = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ testpaths = ['tests']
legacy_tox_ini = """
[tox]
min_version = 4.0
envlist = py38, py39, py310, py311, py312, py313, docs
envlist = py39, py310, py311, py312, py313, docs
[testenv]
extras = all
Expand Down

0 comments on commit ca45ab6

Please sign in to comment.