Updated version number and type hint

This commit is contained in:
Sebastian Kloth 2024-06-14 10:10:58 +02:00
parent 7d8c5d849d
commit 3aa91d7482
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "mdevaluate" name = "mdevaluate"
version = "24.02" version = "24.06"
dependencies = [ dependencies = [
"mdanalysis", "mdanalysis",
"pandas", "pandas",

View File

@ -177,7 +177,7 @@ def coherent_sum(
func: Callable[[ArrayLike, ArrayLike], float], func: Callable[[ArrayLike, ArrayLike], float],
coord_a: ArrayLike, coord_a: ArrayLike,
coord_b: ArrayLike, coord_b: ArrayLike,
) -> float: ) -> NDArray:
""" """
Perform a coherent sum over two arrays :math:`A, B`. Perform a coherent sum over two arrays :math:`A, B`.