From 83d1c7b86234997110c34c045fabc6c02491c827 Mon Sep 17 00:00:00 2001 From: Nathan Voxland Date: Tue, 7 May 2024 09:49:35 -0500 Subject: [PATCH] Improved message for GetChunkError --- deeplake/util/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deeplake/util/exceptions.py b/deeplake/util/exceptions.py index dce25268b4..4398e41dde 100644 --- a/deeplake/util/exceptions.py +++ b/deeplake/util/exceptions.py @@ -1013,7 +1013,7 @@ def __init__( if cause is not None: cause_message = str(cause) if isinstance(cause, KeyError): - cause_message = f" The file {cause} does not exist." + cause_message = f"The file {cause} does not exist." message += f" Root Cause: {cause_message}"