Skip to content

Commit 2cf3299

Browse files
authored
fix multidimensional key error (#204)
1 parent 27bf926 commit 2cf3299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/table_updates/update_data_element_catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def _update_by_data_dictionary(
229229
)
230230
logger.info(
231231
"Updated both columns size and number: %s \n" % vars_to_update_checkbox.shape[0]
232-
+ "\n".join(vars_to_update_checkbox.loc[vars_to_update_checkbox, "variable"])
232+
+ "\n".join(vars_to_update_checkbox["variable"])
233233
)
234234
return vars_to_add_df, vars_to_rm_df, vars_to_update_df
235235

0 commit comments

Comments
 (0)