Skip to content

Commit dbbf269

Browse files
committed
fix object generation in terms not found summary
1 parent cd08049 commit dbbf269

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/template_generation_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def generate_class_graph_template(ccf_tools_df :pd.DataFrame, log_dict: dict):
8888

8989
del_index = []
9090
for t in no_valid_class:
91-
log_dict["no_found_id"].append({"id": {t}})
91+
log_dict["no_found_id"].append({"id": t})
9292
#logger.warning(f"Unrecognised UBERON/CL/PCL entity '{t}'")
9393
del_index.extend(ccf_tools_df[(ccf_tools_df['s'] == t) | (ccf_tools_df['o'] == t)].index)
9494

0 commit comments

Comments
 (0)