Skip to content

Commit

Permalink
fix combine_amplitude_dispersions return type
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Oct 28, 2024
1 parent 5ba009e commit 83a662e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dolphin/ps.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def combine_means(means: ArrayLike, N: ArrayLike) -> np.ndarray:

def combine_amplitude_dispersions(
dispersions: np.ndarray, means: np.ndarray, N: ArrayLike | Sequence
) -> np.ndarray:
) -> tuple[np.ndarray, np.ndarray]:
r"""Compute the combined amplitude dispersion from multiple groups.
Given several ADs where difference numbers of images, N, went in,
Expand Down

0 comments on commit 83a662e

Please sign in to comment.