Closed menzel-gfdl closed 3 months ago
The if condition is not correct here:
if
https://github.com/NOAA-GFDL/fre-workflows/blob/138600c05ddfd7dee80ef2c27dfded551cd02ca2/app/remap-pp-components/bin/remap-pp-components#L452
It should read if ens_mem is None. Also, can we change those check=False options to check=True? That should make the script fail instead of saying it passes.
if ens_mem is None
check=False
check=True
updated original issue text w/ permalink. without it- what the problem was is not clear.
The
if
condition is not correct here:https://github.com/NOAA-GFDL/fre-workflows/blob/138600c05ddfd7dee80ef2c27dfded551cd02ca2/app/remap-pp-components/bin/remap-pp-components#L452
It should read
if ens_mem is None
. Also, can we change thosecheck=False
options tocheck=True
? That should make the script fail instead of saying it passes.