Skip to content

Commit 9afde96

Browse files
chanegd naming conventions
1 parent e3a521f commit 9afde96

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/environments/export_IODescriptors.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ def main():
5656
# Make a yaml file with the output
5757
import yaml
5858

59-
with open("obs_descriptors.yaml", "w") as f:
59+
name = args_cli.task.lower().replace("-", "_")
60+
name = name.replace(" ", "_")
61+
62+
with open(f"{name}_IO_descriptors.yaml", "w") as f:
6063
yaml.safe_dump(outs, f)
6164

6265
for k, v in out_actions.items():

0 commit comments

Comments
 (0)