Skip to content

Commit f0d4169

Browse files
committed
fix: Python 3.5 has no f strings
1 parent accc46b commit f0d4169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sap/aibus/dar/client/test_inference_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def post_to_endpoint(*args, **kwargs):
283283
)
284284
return response
285285
else:
286-
raise ValueError(f"objectId '{object_id}' not handled in test.")
286+
raise ValueError("objectId '%s' not handled in test." % object_id)
287287

288288
return post_to_endpoint
289289

0 commit comments

Comments
 (0)