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 bids2openminds/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import pandas as pd
from nameparser import HumanName

import openminds.v3.core as omcore
import openminds.v3.controlled_terms as controlled_terms
import openminds.v4.core as omcore
import openminds.v4.controlled_terms as controlled_terms
from openminds import IRI

from .utility import table_filter, pd_table_value, file_hash, file_storage_size, detect_nifti_version
Expand Down
6 changes: 3 additions & 3 deletions bids2openminds/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

import pandas as pd

import openminds.v3.controlled_terms as controlled_terms
from openminds.v3.core import Hash, QuantitativeValue, ContentType
from openminds.v3.controlled_terms import UnitOfMeasurement
import openminds.v4.controlled_terms as controlled_terms
from openminds.v4.core import Hash, QuantitativeValue, ContentType
from openminds.v4.controlled_terms import UnitOfMeasurement


def read_json(file_path: str) -> dict:
Expand Down
Loading
Loading