Skip to content

Commit

Permalink
#2673 Check None of met_data.shape
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Soh committed Oct 10, 2024
1 parent 80a13a9 commit ec959a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/python/met/dataplane.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def validate_met_data(met_data, fill_value=None):
if hasattr(met_data, 'shape'):
nx, ny = met_data.shape
else:
met_base.quit(f"{method_name} The met_data does not have shape member")
met_base.quit(f"{method_name} The met_data does not have the shape property")
sys.exit(1)

met_fill_value = met_base.MET_FILL_VALUE
Expand Down

0 comments on commit ec959a2

Please sign in to comment.