Skip to content

Commit

Permalink
Merge from main
Browse files Browse the repository at this point in the history
  • Loading branch information
sandorkertesz committed Jan 18, 2024
1 parent 927fe4b commit 88ab5be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ai_models/inputs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _patch(self, **kargs):
def fields_sfc(self):
param = self.owner.param_sfc
if not param:
return cml.load_source("empty")
return ekd.load_source("empty")

LOG.info(f"Loading surface fields from {self.WHERE}")

Expand All @@ -51,7 +51,7 @@ def fields_sfc(self):
def fields_pl(self):
param, level = self.owner.param_level_pl
if not (param and level):
return cml.load_source("empty")
return ekd.load_source("empty")

LOG.info(f"Loading pressure fields from {self.WHERE}")
return ekd.from_source(
Expand All @@ -75,7 +75,7 @@ def fields_pl(self):
def fields_ml(self):
param, level = self.owner.param_level_ml
if not (param and level):
return cml.load_source("empty")
return ekd.load_source("empty")

LOG.info(f"Loading model fields from {self.WHERE}")
return ekd.from_source(
Expand Down

0 comments on commit 88ab5be

Please sign in to comment.