Skip to content

Commit 8b31902

Browse files
authored
Merge branch 'master' into master
2 parents 62304b5 + ba5023f commit 8b31902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/predictor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def __call__(self, data):
246246
if hasattr(data, 'read'):
247247
return _json_serialize_from_buffer(data)
248248

249-
raise ValueError("Unable to handle input format: ".format(type(data)))
249+
raise ValueError("Unable to handle input format: {}".format(type(data)))
250250

251251

252252
json_serializer = _JsonSerializer()

0 commit comments

Comments
 (0)