Skip to content

Commit

Permalink
Merge pull request #47 from CBIIT/Hot-fix-duplicate-ID-error
Browse files Browse the repository at this point in the history
Hot fix duplicate id error
  • Loading branch information
n2iw authored Jan 16, 2025
2 parents 892affc + 454914b commit ef8f91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def validate_file_id(self, id, line_num):
else:
if self.has_file_id:
msg = f'Line {line_num}: "{id_field_name}" is required but not provided. You can provide correct "{id_field_name}" or remove the column and let the system generate it for you.'
self.log.error(msg)
# self.log.error(msg)
return False, msg

return True, None

0 comments on commit ef8f91a

Please sign in to comment.