From 34169ca4b834c6841c3ed98ada1c97455359d35d Mon Sep 17 00:00:00 2001 From: Tom Aldcroft Date: Tue, 19 Mar 2024 08:49:55 -0400 Subject: [PATCH] Change np.float to float --- xija/component/heat/solar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xija/component/heat/solar.py b/xija/component/heat/solar.py index e974fef..993fd8c 100644 --- a/xija/component/heat/solar.py +++ b/xija/component/heat/solar.py @@ -612,7 +612,7 @@ def __init__( self.dPs = ( np.zeros_like(self.dP_pitches) if dPs is None - else np.array(dPs, dtype=np.float) + else np.array(dPs, dtype=float) ) for i, instr_name in enumerate(self.instr_names): for j, pitch in enumerate(self.P_pitches):