You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The ModuleNotFoundError error is triggered after changing the module name for TableInput.RWS.options.template_dataset.
To Reproduce
Steps to reproduce the behavior:
Create a workflow step:
from .read_tree_class_to_df import read_tree_class_to_df
......
step = TableInputRWS(
name='Step Name',
order=10,
help="Enter the following parameters for each type",
options={
'dataset_title': 'Dataset Title',
'template_dataset': read_tree_class_to_df,
'read_only_columns': ['ID', 'Category'],
},
active_roles=[Roles.ORG_USER, Roles.ORG_ADMIN]
)
workflow.steps.append(step)
Run the workflow
Change the filename for read_tree_class_to_df to read_tree_class_to_df_1
After tethys finishes reloading, refresh the page, click the "Workflow" tab. You will see that the page remains in loading status, and an error message ModuleNotFoundError: No module named 'tribs_adapter.workflows.prepare_land_cover_parameters.read_tree_class_to_df' on the backend:
Expected behavior
The workflows can show up and be executed normally
Screenshots
If applicable, add screenshots to help explain your problem.
The text was updated successfully, but these errors were encountered:
Describe the bug
The
ModuleNotFoundError
error is triggered after changing the module name forTableInput.RWS.options.template_dataset
.To Reproduce
Steps to reproduce the behavior:
read_tree_class_to_df
toread_tree_class_to_df_1
ModuleNotFoundError: No module named 'tribs_adapter.workflows.prepare_land_cover_parameters.read_tree_class_to_df'
on the backend:Expected behavior
The workflows can show up and be executed normally
Screenshots
If applicable, add screenshots to help explain your problem.
The text was updated successfully, but these errors were encountered: