From bb9765c7e06b22d6861b243f07f78491f17a5647 Mon Sep 17 00:00:00 2001 From: Pete R Jemian Date: Tue, 12 Dec 2023 15:54:33 -0600 Subject: [PATCH] MNT #309 per review --- hkl/sample.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hkl/sample.py b/hkl/sample.py index 40677934..8a9b92b2 100644 --- a/hkl/sample.py +++ b/hkl/sample.py @@ -333,9 +333,7 @@ def reflections(self, refls): for refl in refls: self.add_reflection(*refl) - def add_reflection( - self, h: (int, float), k: (int, float), l: (int, float), position=None, detector=None, compute_ub=False - ): + def add_reflection(self, h: float, k: float, l: float, position=None, detector=None, compute_ub=False): """Add a reflection, optionally specifying the detector to use Parameters