#30 black formatting

This commit is contained in:
Alok Saldanha
2020-09-08 21:10:58 -04:00
parent fc83523c84
commit 465373ca7e
2 changed files with 17 additions and 5 deletions

View File

@@ -169,11 +169,15 @@ class CacheEntry:
cellxgene_response = get(full_path, headers=headers)
elif request.method == "PUT":
cellxgene_response = put(
full_path, headers=headers, data=request.data,
full_path,
headers=headers,
data=request.data,
)
elif request.method == "POST":
cellxgene_response = post(
full_path, headers=headers, data=request.data,
full_path,
headers=headers,
data=request.data,
)
else:
raise CellxgeneException(
@@ -193,7 +197,9 @@ class CacheEntry:
resp_headers[h] = cellxgene_response.headers[h]
gateway_response = make_response(
gateway_content, cellxgene_response.status_code, resp_headers,
gateway_content,
cellxgene_response.status_code,
resp_headers,
)
return gateway_response

View File

@@ -31,10 +31,16 @@ enable_upload = os.environ.get("GATEWAY_ENABLE_UPLOAD", "").lower() in [
]
enable_annotations = os.environ.get(
"GATEWAY_ENABLE_ANNOTATIONS", ""
).lower() in ["true", "1",]
).lower() in [
"true",
"1",
]
enable_backed_mode = os.environ.get(
"GATEWAY_ENABLE_BACKED_MODE", ""
).lower() in ["true", "1",]
).lower() in [
"true",
"1",
]
env_vars = {
"CELLXGENE_LOCATION": cellxgene_location,