From a50936d43628a3cf09f4a844a47c4a3c65dca1ac Mon Sep 17 00:00:00 2001 From: Thomas Schultz Date: Tue, 19 Jul 2016 23:58:10 -0400 Subject: [PATCH] Fix datastore __init__ docstring. --- gcloud/datastore/__init__.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gcloud/datastore/__init__.py b/gcloud/datastore/__init__.py index 6393c2ec99bb..8420de90d5d0 100644 --- a/gcloud/datastore/__init__.py +++ b/gcloud/datastore/__init__.py @@ -14,14 +14,14 @@ """Shortcut methods for getting set up with Google Cloud Datastore. -You'll typically use these to get started with the API: - ->>> from gcloud import datastore ->>> ->>> client = datastore.Client() ->>> key = client.key('EntityKind', 1234) ->>> entity = datastore.Entity(key) ->>> query = client.query(kind='EntityKind') +You'll typically use these to get started with the API:: + + >>> from gcloud import datastore + >>> + >>> client = datastore.Client() + >>> key = client.key('EntityKind', 1234) + >>> entity = datastore.Entity(key) + >>> query = client.query(kind='EntityKind') The main concepts with this API are: