Skip to content

Commit be0e13c

Browse files
author
Felix Erdmann
committed
remove ensemblestat from VALID_PLUGIN_TYPES in hooks/post_gen_project.py
- currently we do not have ensemblestats plugins - importer and diagnostic remain as plugin types
1 parent 0020618 commit be0e13c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hooks/post_gen_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ def remove_file(filepath):
1616

1717
plugin_type = "{{ cookiecutter.plugin_type }}".lower()
1818

19-
VALID_PLUGIN_TYPES = ["importer", "diagnostic", "ensemblestat"]
19+
VALID_PLUGIN_TYPES = ["importer", "diagnostic"]#, "ensemblestat"]
2020
# Remove the plugin type that was not selected
2121
for plugin in VALID_PLUGIN_TYPES:
2222
if plugin != plugin_type:
23-
shutil.rmtree(f"{{ cookiecutter.project_slug }}/{plugin}")
23+
shutil.rmtree(f"{{ cookiecutter.project_slug }}/{plugin}")

0 commit comments

Comments
 (0)