Skip to content
Snippets Groups Projects
Commit ec7bbdba authored by Charlotte Hausman's avatar Charlotte Hausman Committed by Sam Kagan
Browse files

tweak to force capability container build

parent 39ca9281
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,12 @@ from pyramid.view import view_config
def parse_body(request: Request) -> dict:
"""
Return the json body from the request or an empty dictionary
:param request:
:return:
"""
try:
body = request.json_body
except JSONDecodeError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment