Loading src/pythermogis/workflow/utc/utc.py +3 −3 Original line number Diff line number Diff line Loading @@ -15,9 +15,9 @@ from pythermogis.workflow.utc.doublet import ( calculate_doublet_performance, ) OUTPUT_NAMES = list(DoubletOutput._fields) NAN_OUTPUTS = DoubletOutput(*[np.nan] * len(OUTPUT_NAMES)) ZERO_OUTPUTS = DoubletOutput(*[0.0] * len(OUTPUT_NAMES)) OUTPUT_NAMES = list(DoubletOutput.__annotations__.keys()) NAN_OUTPUTS = DoubletOutput(*[np.nan] * len(OUTPUT_NAMES)) # type: ignore[arg-type] ZERO_OUTPUTS = DoubletOutput(*[0.0] * len(OUTPUT_NAMES)) # type: ignore[arg-type] def run_utc_workflow(config: UTCConfiguration) -> xr.DataTree: Loading Loading
src/pythermogis/workflow/utc/utc.py +3 −3 Original line number Diff line number Diff line Loading @@ -15,9 +15,9 @@ from pythermogis.workflow.utc.doublet import ( calculate_doublet_performance, ) OUTPUT_NAMES = list(DoubletOutput._fields) NAN_OUTPUTS = DoubletOutput(*[np.nan] * len(OUTPUT_NAMES)) ZERO_OUTPUTS = DoubletOutput(*[0.0] * len(OUTPUT_NAMES)) OUTPUT_NAMES = list(DoubletOutput.__annotations__.keys()) NAN_OUTPUTS = DoubletOutput(*[np.nan] * len(OUTPUT_NAMES)) # type: ignore[arg-type] ZERO_OUTPUTS = DoubletOutput(*[0.0] * len(OUTPUT_NAMES)) # type: ignore[arg-type] def run_utc_workflow(config: UTCConfiguration) -> xr.DataTree: Loading