aboutsummaryrefslogtreecommitdiff
path: root/instance/sqlite.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2021-12-28 01:12:02 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2021-12-28 01:12:02 +0100
commit56b34db2bb402fd4b2991e271ec493f8bfb96420 (patch)
tree8938cff4a0af7593fec5dd884de5803a0eee226b /instance/sqlite.py
parentupdated SQLAlchemy (diff)
downloadnewspipe-56b34db2bb402fd4b2991e271ec493f8bfb96420.tar.gz
newspipe-56b34db2bb402fd4b2991e271ec493f8bfb96420.tar.bz2
newspipe-56b34db2bb402fd4b2991e271ec493f8bfb96420.zip
chg: [style] Format with black.
Diffstat (limited to 'instance/sqlite.py')
-rw-r--r--instance/sqlite.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/instance/sqlite.py b/instance/sqlite.py
index 8c2b613c..9d171b89 100644
--- a/instance/sqlite.py
+++ b/instance/sqlite.py
@@ -19,19 +19,19 @@ SQLALCHEMY_DATABASE_URI = "sqlite:///newspipe.db"
# Security
CONTENT_SECURITY_POLICY = {
- 'default-src': '\'self\'',
- 'img-src': '* data:',
- 'media-src': [
- 'youtube.com',
+ "default-src": "'self'",
+ "img-src": "* data:",
+ "media-src": [
+ "youtube.com",
],
- 'script-src': [
- '\'self\'',
- '\'unsafe-inline\'',
+ "script-src": [
+ "'self'",
+ "'unsafe-inline'",
+ ],
+ "style-src": [
+ "'self'",
+ "'unsafe-inline'",
],
- 'style-src': [
- '\'self\'',
- '\'unsafe-inline\'',
- ]
}
# Crawler
bgstack15