diff --git a/gcloud/datastore/__init__.py b/gcloud/datastore/__init__.py index b4a8bd0a57ad..ee718e87f4b6 100644 --- a/gcloud/datastore/__init__.py +++ b/gcloud/datastore/__init__.py @@ -44,17 +44,15 @@ which represents a lookup or search over the rows in the datastore. """ -__version__ = '0.1.2' +from gcloud import credentials +from gcloud.datastore.connection import Connection + SCOPE = ('https://www.googleapis.com/auth/datastore ', 'https://www.googleapis.com/auth/userinfo.email') """The scope required for authenticating as a Cloud Datastore consumer.""" -from gcloud import credentials -from gcloud.datastore.connection import Connection - - def get_connection(): """Shortcut method to establish a connection to the Cloud Datastore. diff --git a/gcloud/storage/__init__.py b/gcloud/storage/__init__.py index 0d3fdf0262a6..c91b0bc1c9ab 100644 --- a/gcloud/storage/__init__.py +++ b/gcloud/storage/__init__.py @@ -37,8 +37,6 @@ machine). """ -__version__ = '0.1' - from gcloud import credentials from gcloud.storage.connection import Connection