remove apiary from docstring

This commit is contained in:
diminator 2016-08-17 15:27:36 +02:00
parent e871458a99
commit 7df49b068a
No known key found for this signature in database
GPG Key ID: C3D8590E6D0D439A
2 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
"""This module provides the blueprint for some basic API endpoints. """This module provides the blueprint for some basic API endpoints.
For more information please refer to the documentation in Apiary: For more information please refer to the documentation on ReadTheDocs:
- http://docs.bigchaindb.apiary.io/ - https://bigchaindb.readthedocs.io/en/latest/drivers-clients/http-client-server-api.html
""" """
import flask import flask
@ -13,6 +13,7 @@ from bigchaindb import version
info_views = Blueprint('info_views', __name__) info_views = Blueprint('info_views', __name__)
@info_views.route('/') @info_views.route('/')
def home(): def home():
return flask.jsonify({ return flask.jsonify({

View File

@ -1,7 +1,7 @@
"""This module provides the blueprint for some basic API endpoints. """This module provides the blueprint for some basic API endpoints.
For more information please refer to the documentation in Apiary: For more information please refer to the documentation on ReadTheDocs:
- http://docs.bigchaindb.apiary.io/ - https://bigchaindb.readthedocs.io/en/latest/drivers-clients/http-client-server-api.html
""" """
import flask import flask