Skip to content
Snippets Groups Projects
Commit 5cfbf6d9 authored by Mostafa Hadizadeh's avatar Mostafa Hadizadeh
Browse files

Merge branch 'fix-wrapper' into 'main'

Fixed missing name key

See merge request !10
parents dee49e87 8e702346
Branches main
No related tags found
1 merge request!10Fixed missing name key
Pipeline #97341 passed
......@@ -27,8 +27,8 @@ def sample_function(config_dict):
ds = xr.open_mfdataset(files[:2]).isel(time=slice(0, 2))
mean = ds.mean(dim="time")
# multiple the mean by multiple_by
mean = mean * int(config_dict["multiple_by"])
# multiple the mean by multiply_by
mean = mean * int(config_dict["multiply_by"])
# substract the mean by substraction_from
mean = mean - float(config_dict["substraction_from"])
......
......@@ -44,7 +44,10 @@ class {{cookiecutter.plugin_folder}}(plugin.PluginAbstract):
# [OPTIONAL]: tags, that are the plugin can be described with and found by
__tags__: Optional[List[str]] = ["something", "somethingelse"]
# [OPTIONAL]: author of the plugin
tool_developer = { "{{cookiecutter.plugin_authors}}" }
tool_developer = {
"name": "{{cookiecutter.plugin_authors}}",
"email": "{{cookiecutter.plugin_author_emails}}"
}
# [OPTIONAL]: long description of the author of the plugin
__long_description__: Optional[str] = "{{cookiecutter.plugin_title}} plugin long description"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment