Skip to content

Commit

Permalink
Fix validation (#12680)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah-witt authored Aug 4, 2022
1 parent 7bb2c3b commit 0a6877b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def metadata(check, check_duplicates, show_warnings):
missing_headers = ALL_HEADERS.difference(all_keys)
if missing_headers:
errors = True
display_queue.append(echo_failure(f'{current_check}:{line} Missing columns {missing_headers}'))
display_queue.append((echo_failure, f'{current_check}:{line} Missing columns {missing_headers}'))
continue

errors = errors or check_duplicate_values(
Expand Down

0 comments on commit 0a6877b

Please sign in to comment.