Skip to content

Commit ec3581a

Browse files
committed
feat(argo): added underscore in example name to avoid duplication
1 parent 623cab0 commit ec3581a

4 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/copier_template/src/{{ project_name }}/templates/example.yaml.jinja renamed to src/copier_template/src/{{ project_name }}/templates/_example.yaml.jinja

File renamed without changes.

src/copier_template/src/{{ project_name }}/workflow_definitions/create_example_template.py.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,5 @@ example.yaml""",
178178
[install, params] >> makeimages >> makehdf5 # pyright: ignore
179179

180180

181-
with open("example.yaml", "w") as div:
181+
with open("_example.yaml", "w") as div:
182182
div.write(w.to_yaml()) # pyright: ignore[reportUnknownMemberType]

src/python_interface_to_workflows/templates/example.yaml renamed to src/python_interface_to_workflows/templates/_example.yaml

File renamed without changes.

src/python_interface_to_workflows/workflow_definitions/create_example_template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,5 @@ def to_hdf5(paths: str):
178178
[install, params] >> makeimages >> makehdf5 # pyright: ignore
179179

180180

181-
with open("example.yaml", "w") as div:
181+
with open("_example.yaml", "w") as div:
182182
div.write(w.to_yaml()) # pyright: ignore[reportUnknownMemberType]

0 commit comments

Comments
 (0)