We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In coastal.py in uw-coupled-drivers:
coastal.py
uw-coupled-drivers
from uwtools.api.file import link
from uwtools.api.fs import link
controller=self.driver_name
controller=[self.driver_name()]
controller
list[str]
self.driver_name()
@property
driver_name()
See open PR: ufs-community/uw-coupled-drivers#2
The text was updated successfully, but these errors were encountered:
maddenp-noaa
No branches or pull requests
In
coastal.py
inuw-coupled-drivers
:from uwtools.api.file import link
->from uwtools.api.fs import link
(module name change)controller=self.driver_name
->controller=[self.driver_name()]
(controller
now takes alist[str]
keypath, andself.driver_name()
is now callable)@property
decorator from methoddriver_name()
.See open PR: ufs-community/uw-coupled-drivers#2
The text was updated successfully, but these errors were encountered: