Skip to content

Commit cea9371

Browse files
committed
Removing unused _implicit_environ._DatastoreBase class.
1 parent 0002b87 commit cea9371

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

gcloud/datastore/_implicit_environ.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
33
Acts as a mutable namespace to allow the datastore package to
44
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.
85
"""
96

107

@@ -16,15 +13,3 @@
1613

1714
CONNECTION = None
1815
"""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

Comments
 (0)