TNO Intern

Commit b33988ef authored by Florian Knappers's avatar Florian Knappers
Browse files

no warnings

parent 95b2a133
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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: