We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f298f54 commit ba5023fCopy full SHA for ba5023f
src/sagemaker/predictor.py
@@ -246,7 +246,7 @@ def __call__(self, data):
246
if hasattr(data, 'read'):
247
return _json_serialize_from_buffer(data)
248
249
- raise ValueError("Unable to handle input format: ".format(type(data)))
+ raise ValueError("Unable to handle input format: {}".format(type(data)))
250
251
252
json_serializer = _JsonSerializer()
0 commit comments