forked from mirrors/bookwyrm
Fix Python formating
This commit is contained in:
parent
c9c7a673d7
commit
582c2d4f25
1 changed files with 2 additions and 0 deletions
|
@ -4,12 +4,14 @@ from storages.backends.s3boto3 import S3Boto3Storage
|
|||
|
||||
class StaticStorage(S3Boto3Storage): # pylint: disable=abstract-method
|
||||
"""Storage class for Static contents"""
|
||||
|
||||
location = "static"
|
||||
default_acl = "public-read"
|
||||
|
||||
|
||||
class ImagesStorage(S3Boto3Storage): # pylint: disable=abstract-method
|
||||
"""Storage class for Image files"""
|
||||
|
||||
location = "images"
|
||||
default_acl = "public-read"
|
||||
file_overwrite = False
|
||||
|
|
Loading…
Reference in a new issue