From 582c2d4f25a359932aaf5006dcceb9f63d040e0a Mon Sep 17 00:00:00 2001 From: Joachim Date: Sat, 19 Jun 2021 12:04:30 +0200 Subject: [PATCH] Fix Python formating --- bookwyrm/storage_backends.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bookwyrm/storage_backends.py b/bookwyrm/storage_backends.py index 25c95ca4..e10dfb84 100644 --- a/bookwyrm/storage_backends.py +++ b/bookwyrm/storage_backends.py @@ -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