Skip to content

Commit

Permalink
Fix ah import messages
Browse files Browse the repository at this point in the history
  • Loading branch information
haneslinger committed Dec 15, 2023
1 parent 275cc7c commit 96ab5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seed/data_importer/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ def _new_process_ali_data(model, raw_data, import_file_ali, ah_mappings):
ali_info = {
to_col: raw_data.get(from_col)
for from_col, (_, to_col, _, _) in ah_mappings.items()
if raw_data.get(from_col) is not None
if raw_data.get(from_col) is not None and raw_data.get(from_col) != ""
}
if not ali_info:
model.raw_access_level_instance_error = "Missing Access Level Column data."
Expand Down

0 comments on commit 96ab5c8

Please sign in to comment.