Skip to content

Commit

Permalink
Code style on #847.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjordan committed Nov 12, 2024
1 parent f84a522 commit c8bc120
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion workbench_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7848,7 +7848,11 @@ def validate_taxonomy_field_values(config, field_definitions, csv_data):
for column_name in fields_with_vocabularies:
if len(row[column_name]):
new_term_names_in_csv = validate_taxonomy_reference_value(
config, field_definitions, column_name, row[column_name], row[config["id_field"]]
config,
field_definitions,
column_name,
row[column_name],
row[config["id_field"]],
)
new_term_names_in_csv_results.append(new_term_names_in_csv)

Expand Down

0 comments on commit c8bc120

Please sign in to comment.