Skip to content

Commit ddd02f4

Browse files
authored
Merge pull request #81 from octue/export-blobfield
Add BlobField to storage module exports
2 parents e9bbb5d + 6168556 commit ddd02f4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

django_gcp/storage/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# TODO: Refactor tests to import members directly then remove this module export
22
from . import gcloud
33
from .blob_utils import BlobFieldMixin, get_blob, get_blob_name, get_path, get_signed_url
4+
from .fields import BlobField
45
from .gcloud import GoogleCloudFile, GoogleCloudMediaStorage, GoogleCloudStaticStorage, GoogleCloudStorage
56
from .operations import upload_blob
67

78
__all__ = [
9+
"BlobField",
10+
"BlobFieldMixin",
811
"GoogleCloudStorage",
912
"GoogleCloudFile",
1013
"gcloud",
1114
"GoogleCloudMediaStorage",
1215
"GoogleCloudStaticStorage",
13-
"BlobFieldMixin",
1416
"get_blob",
1517
"get_blob_name",
1618
"get_path",

0 commit comments

Comments
 (0)