Skip to content

Commit

Permalink
Updates for uwtools 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maddenp-noaa committed Sep 19, 2024
1 parent 3d917e9 commit 7e3f84e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions coastal/coastal.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from iotaa import asset, task, tasks
from uwtools.api.cdeps import CDEPS
from uwtools.api.driver import DriverCycleBased
from uwtools.api.file import link
from uwtools.api.fs import link
from uwtools.api.logging import use_uwtools_logger
from uwtools.api.schism import SCHISM

Expand Down Expand Up @@ -34,8 +34,8 @@ def provisioned_rundir(self):
"""
The run directory provisioned with all required content.
"""
cdeps = CDEPS(config=self.config_full, cycle=self.cycle, controller=self.driver_name)
schism = SCHISM(config=self.config_full, cycle=self.cycle, controller=self.driver_name)
cdeps = CDEPS(config=self.config_full, cycle=self.cycle, controller=[self.driver_name()])
schism = SCHISM(config=self.config_full, cycle=self.cycle, controller=[self.driver_name()])
yield self.taskname("Provisioned run directory")
yield [
cdeps.atm_nml(),
Expand All @@ -57,6 +57,5 @@ def restart_dir(self):
yield None
path.mkdir(parents=True)

@property
def driver_name(self):
return "coastal"

0 comments on commit 7e3f84e

Please sign in to comment.