Skip to content

Commit c2bbdc5

Browse files
committed
formatting
1 parent cac9526 commit c2bbdc5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compas/rpc/dispatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def _dispatch(self, name, args):
122122
try:
123123
idict = json.loads(args[0], cls=DataDecoder)
124124
except (IndexError, TypeError):
125-
odict["error"] = "API methods require a single JSON encoded dictionary as input.\n" "For example: input = json.dumps({'param_1': 1, 'param_2': [2, 3]})"
125+
odict["error"] = "API methods require a single JSON encoded dictionary as input.\nFor example: input = json.dumps({'param_1': 1, 'param_2': [2, 3]})"
126126

127127
else:
128128
self._call(function, idict, odict)

0 commit comments

Comments
 (0)