Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Dec 6, 2024
1 parent 2b98c90 commit 9039082
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion codeforlife/settings/third_party.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,17 @@
AWS_IS_GZIPPED = bool(int(os.getenv("AWS_IS_GZIPPED", "0")))
GZIP_CONTENT_TYPES = os.getenv(
"GZIP_CONTENT_TYPES",
"(text/css,text/javascript,application/javascript,application/x-javascript,image/svg+xml)",
"("
+ ",".join(
[
"text/css",
"text/javascript",
"application/javascript",
"application/x-javascript",
"image/svg+xml",
]
)
+ ")",
)
AWS_S3_REGION_NAME = os.getenv("AWS_S3_REGION_NAME")
AWS_S3_USE_SSL = bool(int(os.getenv("AWS_S3_USE_SSL", "1")))
Expand Down

0 comments on commit 9039082

Please sign in to comment.