From c285eb704671b7d6e6e53ba7c05bf958f7e261b7 Mon Sep 17 00:00:00 2001 From: Arun Kannawadi Date: Thu, 16 Nov 2023 12:09:12 -0800 Subject: [PATCH] Fix a trivial typo in error message --- python/lsst/cell_coadds/_multiple_cell_coadd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/cell_coadds/_multiple_cell_coadd.py b/python/lsst/cell_coadds/_multiple_cell_coadd.py index a11b0693..3465c27a 100644 --- a/python/lsst/cell_coadds/_multiple_cell_coadd.py +++ b/python/lsst/cell_coadds/_multiple_cell_coadd.py @@ -97,7 +97,7 @@ def __init__( if n_noise_realizations: n_noise_realizations.add(self._n_noise_realizations) raise ValueError( - f"Inconsistent number of noise realizations ({n_noise_realizations}) betwen cells." + f"Inconsistent number of noise realizations ({n_noise_realizations}) between cells." ) max_inner_bbox = Box2I(self._cells.first.inner.bbox.getMin(), self._cells.last.inner.bbox.getMax()) if inner_bbox is None: