We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0002b87 commit cea9371Copy full SHA for cea9371
1 file changed
gcloud/datastore/_implicit_environ.py
@@ -2,9 +2,6 @@
2
3
Acts as a mutable namespace to allow the datastore package to
4
imply the current dataset and connection from the enviroment.
5
-
6
-Also provides a base class for classes in the `datastore` package
7
-which could utilize the implicit enviroment.
8
"""
9
10
@@ -16,15 +13,3 @@
16
13
17
14
CONNECTION = None
18
15
"""Module global to allow persistent implied connection from enviroment."""
19
20
21
-class _DatastoreBase(object):
22
- """Base for all classes in the datastore package.
23
24
- Uses the implicit DATASET object as a default dataset attached
25
- to the instances being created. Stores the dataset passed in
26
- on the protected (i.e. non-public) attribute `_dataset`.
27
- """
28
29
- def __init__(self, dataset=None):
30
- self._dataset = dataset or DATASET
0 commit comments