Skip to content

Commit

Permalink
fixed an extra indent in build_manifest()
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekFurstPitt committed Jul 15, 2024
1 parent 1aee1ef commit 5b902d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def build_manifest(self, request, response):
entity_type = source.get("entity_type")
hubmap_id = source.get("hubmap_id")
if entity_type is None:
return make_response(jsonify("Required field 'entity_type' was not returned by the query. Make sure it has not been excluded"), 400)
return make_response(jsonify("Required field 'entity_type' was not returned by the query. Make sure it has not been excluded"), 400)
if entity_type.lower() == "dataset":
manifest_list.append(f"{hubmap_id} /")
if not manifest_list:
Expand Down

0 comments on commit 5b902d0

Please sign in to comment.