diff --git a/python/lsst/ts/imsim/opd_metrology.py b/python/lsst/ts/imsim/opd_metrology.py index d8d0813..3130979 100644 --- a/python/lsst/ts/imsim/opd_metrology.py +++ b/python/lsst/ts/imsim/opd_metrology.py @@ -157,7 +157,7 @@ def set_wgt_and_field_xy_of_gq(self, inst_name: str) -> None: camera = get_camera(inst_name) if inst_name == "lsstfam": self.sensor_ids = np.arange(189) - elif inst_name == 'comcam': + elif inst_name == "comcam": self.sensor_ids = np.arange(9) else: raise ValueError(f"Instrument {inst_name} is not supported in OPD mode.") @@ -353,7 +353,6 @@ def calc_gq_value(self, value_list: list[float] | np.ndarray) -> float: ValueError Length of wt ratio != length of value list. """ - print(self.wt, value_list) # Check the lengths of weighting ratio and value list are the same if len(self.wt) != len(value_list): raise ValueError("Length of wt ratio != length of value list.")