We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecfcac6 commit d16cf60Copy full SHA for d16cf60
piccolo_api/media/base.py
@@ -73,7 +73,6 @@
73
ALLOWED_COLUMN_TYPES = (Varchar, Text)
74
75
76
-# TODO - might move this to Piccolo API.
77
class MediaStorage(metaclass=abc.ABCMeta):
78
"""
79
If you want to implement your own custom storage backend, create a subclass
piccolo_api/media/s3.py
@@ -79,7 +79,7 @@ def __init__(
except ImportError: # pragma: no cover
80
sys.exit(
81
"Please install boto3 to use this feature "
82
- "`pip install 'piccolo_admin[s3]'`"
+ "`pip install 'piccolo_api[s3]'`"
83
)
84
else:
85
self.boto3 = boto3
0 commit comments