Upload splitters.py with huggingface_hub
Browse files- splitters.py +1 -1
splitters.py
CHANGED
@@ -290,5 +290,5 @@ class SpreadSplit(InstanceOperatorWithMultiStreamAccess):
|
|
290 |
return instance
|
291 |
except Exception as e:
|
292 |
raise Exception(
|
293 |
-
f"Unable to fetch instances from '{self.source_stream}' to '{self.target_field}'"
|
294 |
) from e
|
|
|
290 |
return instance
|
291 |
except Exception as e:
|
292 |
raise Exception(
|
293 |
+
f"Unable to fetch instances from '{self.source_stream}' to '{self.target_field}', due to {e.__class__.__name__}: {e}"
|
294 |
) from e
|