Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Koss committed Nov 8, 2016
1 parent ca014d7 commit bf4044f
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 13 deletions.
1 change: 0 additions & 1 deletion firestore/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include README.rst
graft google
graft unit_tests
global-include *.json
global-exclude *.pyc
1 change: 0 additions & 1 deletion firestore/google/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
1 change: 0 additions & 1 deletion firestore/google/cloud/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
1 change: 1 addition & 0 deletions firestore/google/cloud/firestore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# 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.

"""Firestore database API public classes."""

from google.cloud.firestore.client import Client
4 changes: 2 additions & 2 deletions firestore/google/cloud/firestore/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

"""Firestore database API."""
"""Firestore database SDK Client."""


class Client(object):
"""Top level Firestore database instance.
"""Firestore Client.
:type project: str
:param project: (optional) Project containing the Firestore database.
Expand Down
6 changes: 1 addition & 5 deletions firestore/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,7 @@
}

REQUIREMENTS = [
'grpcio>=1.0.0, <2.0.0dev',
'googleapis-common-protos>=1.3.4, <2.0.0dev',
'google-gax>=0.14.1, <0.15.0dev',
'oauth2client>=3.0.0, <4.0.0dev',
'google-cloud-core>=0.20',
'google-cloud-core >= 0.20',
]

setup(
Expand Down
3 changes: 0 additions & 3 deletions firestore/unit_tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@
# 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.
"""Unit tests for Google Firestore SDK."""

import unittest

from google.cloud.firestore import Client


class TestFirestore(unittest.TestCase):
"""Unit Tests for the google.cloud.firestore.Client."""

def test_constructor(self):
with self.assertRaises(NotImplementedError):
Client('my-project-id')

0 comments on commit bf4044f

Please sign in to comment.