diff --git a/dvc/utils/diff.py b/dvc/utils/diff.py index a96fd7cb5b1..de217b5dcf3 100644 --- a/dvc/utils/diff.py +++ b/dvc/utils/diff.py @@ -26,7 +26,7 @@ def _diff_vals(old, new, with_unchanged): res = {"old": old, "new": new} if isinstance(new, (int, float)) and isinstance(old, (int, float)): res["diff"] = new - old - + return res