summaryrefslogtreecommitdiff
path: root/trove/datastore
diff options
context:
space:
mode:
authorNikhil Manchanda <SlickNik@gmail.com>2013-12-10 15:24:43 -0800
committerNikhil Manchanda <SlickNik@gmail.com>2013-12-10 15:47:09 -0800
commit8a1db9b689bbcbd37515988517d212e218667d3e (patch)
treeab6de2a080fb33e846da9d66334acd642b1a83fa /trove/datastore
parent4790ba1f04b95d888154ed3652a350c01cd3be77 (diff)
downloadtrove-8a1db9b689bbcbd37515988517d212e218667d3e.tar.gz
Fixed PEP8/flake8 issues
We need to fix PEP8/flake8 issues corresponding to the new hacking rules that got added before we can update to the new global requirements. Change-Id: Iff995139d258549ff9a8e3e5018e964efa2ab152
Diffstat (limited to 'trove/datastore')
-rw-r--r--trove/datastore/models.py18
-rw-r--r--trove/datastore/service.py18
-rw-r--r--trove/datastore/views.py18
3 files changed, 54 insertions, 0 deletions
diff --git a/trove/datastore/models.py b/trove/datastore/models.py
index 8c962134..f4c4daf3 100644
--- a/trove/datastore/models.py
+++ b/trove/datastore/models.py
@@ -1,3 +1,21 @@
+# Copyright 2013 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+
from trove.common import cfg
from trove.common import exception
from trove.db import models as dbmodels
diff --git a/trove/datastore/service.py b/trove/datastore/service.py
index b141d042..e4682742 100644
--- a/trove/datastore/service.py
+++ b/trove/datastore/service.py
@@ -1,3 +1,21 @@
+# Copyright 2013 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+
from trove.common import wsgi
from trove.datastore import models, views
diff --git a/trove/datastore/views.py b/trove/datastore/views.py
index a2b29085..91a345b3 100644
--- a/trove/datastore/views.py
+++ b/trove/datastore/views.py
@@ -1,3 +1,21 @@
+# Copyright 2013 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+#
+
from trove.common.views import create_links