Skip to content

Commit 56a1387

Browse files
authored
remove excess brackets (#436)
1 parent df09f92 commit 56a1387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

biothings/hub/api/handlers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def write(self, result):
2727
# "status": "ok"
2828
# }, iso_dates=True)
2929
serializer.to_json({
30-
{"result": result, "status": "ok"},
30+
"result": result, "status": "ok"
3131
})
3232
)
3333

0 commit comments

Comments
 (0)