Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

delete error msg in file_to_udf #474

Merged
merged 3 commits into from
Feb 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions cg_lims/EPPs/files/file_to_udf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ def set_udfs(well_field: str, value_field: str, udf: str, well_dict: dict, resul
if value is None:
error_msg.append("Some samples in the file hade missing values.")
idalindegaard marked this conversation as resolved.
Show resolved Hide resolved
continue
idalindegaard marked this conversation as resolved.
Show resolved Hide resolved
elif well not in well_dict:
error_msg.append("Some samples in the step were not represented in the file.")
continue
art = well_dict[well]
try:
art.udf[udf] = str(value)
Expand Down
Loading