Skip to content

Commit

Permalink
added missing new line to log (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshen3 authored Nov 26, 2024
1 parent 4c220c2 commit ddf8bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kolena/dataset/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def _upload_results(
f"Total Rows Attempted: {total_rows}\n"
f"Rows Successfully Inserted: {response.n_inserted}\n"
f"Rows Successfully Updated: {response.n_updated}\n"
f"Rows Failed to Insert/Update: {total_rows - response.n_inserted - response.n_updated}"
f"Rows Failed to Insert/Update: {total_rows - response.n_inserted - response.n_updated}\n"
f"Verify the id fields matches. Unchanged datapoints won't be modified. \n"
f"Details: {link}",
)
Expand Down

0 comments on commit ddf8bcd

Please sign in to comment.