Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
RBEGamer committed Oct 8, 2024
1 parent 8b0cd91 commit a4ea4d1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/MagneticReadoutProcessing/MRP/MRPReading.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/MagneticReadoutProcessing/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"}]
Expand Down
2 changes: 1 addition & 1 deletion src/MagneticReadoutProcessing/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = MagneticReadoutProcessing
version = 2.0.1
version = 2.0.2
author = Marcel Ochsendorf
author_email = [email protected]
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.
Expand Down
2 changes: 1 addition & 1 deletion src/MagneticReadoutProcessing/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit a4ea4d1

Please sign in to comment.