Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def brapi_sync_quote_show(name):
def brapi_sync_quote_list_show():
result = brapi.Brapi.get_sync_stock_data_list()
if result:
return result, 200
return jsonify(result), 200
return {'message':'not found'}, 404

if __name__ == '__main__':
Expand Down
Loading