Skip to content

Commit 50b17bd

Browse files
committed
simplify response
1 parent 10f7cb4 commit 50b17bd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cloud_function/handler.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ def handle(event, context):
1919
body['cloud_function_version'] = __version__
2020
body['stockfish_version'] = STOCKFISH_VERSION
2121
return {
22-
'body': {
23-
'message': json.dumps(body),
24-
},
22+
'body': json.dumps(body),
2523
'statusCode': 200,
2624
}
2725

0 commit comments

Comments
 (0)