From 7e9cef947771577e642927d2b54fb2adfe9963fb Mon Sep 17 00:00:00 2001 From: George McCabe <23407799+georgemccabe@users.noreply.github.com> Date: Wed, 8 May 2024 17:04:48 +0000 Subject: [PATCH] call parent class init function to properly initialize nc_point_obs --- scripts/python/met/point_nc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/python/met/point_nc.py b/scripts/python/met/point_nc.py index c0773e65f7..db73d8fae4 100644 --- a/scripts/python/met/point_nc.py +++ b/scripts/python/met/point_nc.py @@ -56,6 +56,7 @@ def get_string_array(nc_group, var_name): class nc_point_obs(met_point_obs): def __init__(self, nc_filename=None): + super().__init__() if nc_filename: self.read_data(nc_filename)