diff --git a/src/MagneticReadoutProcessing/MRP/MRPReading.py b/src/MagneticReadoutProcessing/MRP/MRPReading.py index 9dad2baa..31927ced 100644 --- a/src/MagneticReadoutProcessing/MRP/MRPReading.py +++ b/src/MagneticReadoutProcessing/MRP/MRPReading.py @@ -105,7 +105,7 @@ def load_from_file(self, _filepath_name: str): sys.stderr.write(str(e)) - def has_additional_data(self, _keys: list[str]) -> bool: + def has_additional_data_keys(self, _keys: list[str]) -> bool: """ Checks if all the provided keys exist in the `additional_data` dictionary. @@ -129,7 +129,7 @@ def has_additional_data(self, _keys: list[str]) -> bool: # If all keys are found, return True return True - + def has_additional_data(self, _k: str) -> bool: """ Checks if the provided key exists and is valid in the `additional_data` dictionary. diff --git a/src/MagneticReadoutProcessing/pyproject.toml b/src/MagneticReadoutProcessing/pyproject.toml index 3e94c609..712f194f 100644 --- a/src/MagneticReadoutProcessing/pyproject.toml +++ b/src/MagneticReadoutProcessing/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "MagneticReadoutProcessing" -version = "2.0.1" +version = "2.0.2" description = "This library was created for the Low-Field MRI project and allows processing of data measured by magnetic field sensors. The focus is on visualization, followed by the provision of simple interfaces to work with this data. In general its possible to use this lib on all kinds of sensor data." license = {file = "LICENSE"} authors = [{name = "Marcel Ochsendorf", email = "info@marcelochsendorf.com"}] diff --git a/src/MagneticReadoutProcessing/setup.cfg b/src/MagneticReadoutProcessing/setup.cfg index c8910c23..72fa9510 100644 --- a/src/MagneticReadoutProcessing/setup.cfg +++ b/src/MagneticReadoutProcessing/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = MagneticReadoutProcessing -version = 2.0.1 +version = 2.0.2 author = Marcel Ochsendorf author_email = info@marcelochsendorf.com description = This library was created for the Low-Field MRI project and allows processing of data measured by magnetic field sensors. The focus is on visualization, followed by the provision of simple interfaces to work with this data. In general its possible to use this lib on all kinds of sensor data. diff --git a/src/MagneticReadoutProcessing/setup.py b/src/MagneticReadoutProcessing/setup.py index 17dbcea7..83584296 100644 --- a/src/MagneticReadoutProcessing/setup.py +++ b/src/MagneticReadoutProcessing/setup.py @@ -10,7 +10,7 @@ install_requires = [str(requirement) for requirement in pkg_resources.parse_requirements(requirements_txt)] setup(name='MagneticReadoutProcessing', - version='2.0.1', + version='2.0.2', license='Apache 2', description='This library was created for the Low-Field MRI project and allows processing of data measured by magnetic field sensors. The focus is on visualization, followed by the provision of simple interfaces to work with this data. In general its possible to use this lib on all kinds of sensor data.', author='Marcel Ochsendorf',