Skip to content

Commit

Permalink
Updated error message
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Dec 18, 2023
1 parent 12c6c28 commit ca32a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pephub/routers/api/v1/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ async def update_a_pep(
if sample_table_index_col not in sample:
raise HTTPException(
status_code=400,
detail=f"Sample table does not contain column '{sample_table_index_col}'. Please check sample table",
detail=f"Sample table does not contain sample index column: '{sample_table_index_col}'. Please check sample table",
)
if (
sample[sample_table_index_col] is None
Expand Down

0 comments on commit ca32a9b

Please sign in to comment.