From 13b63e1a243da96e76a8436188a963c655710e04 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Fri, 16 Oct 2020 10:29:26 +0100 Subject: [PATCH] Remove reference to styleguide from config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The styleguide no longer exists, so this variable isn’t referred to from anywhere. --- app/config.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/config.py b/app/config.py index 9dc29106f..aa3ecb4e7 100644 --- a/app/config.py +++ b/app/config.py @@ -59,7 +59,6 @@ class Config(object): # updated unless the session is changed - but it's generally refreshed by `save_service_or_org_after_request` # every time anyway, except for specific endpoints (png/pdfs generally) where we've disabled that handler. SESSION_REFRESH_EACH_REQUEST = False - SHOW_STYLEGUIDE = True WTF_CSRF_ENABLED = True WTF_CSRF_TIME_LIMIT = None CSV_UPLOAD_BUCKET_NAME = 'local-notifications-csv-upload' @@ -152,7 +151,6 @@ class Preview(Config): class Staging(Config): - SHOW_STYLEGUIDE = False HTTP_PROTOCOL = 'https' HEADER_COLOUR = '#6F72AF' # $mauve CSV_UPLOAD_BUCKET_NAME = 'staging-notifications-csv-upload' @@ -167,7 +165,6 @@ class Staging(Config): class Live(Config): - SHOW_STYLEGUIDE = False HEADER_COLOUR = '#005EA5' # $govuk-blue HTTP_PROTOCOL = 'https' CSV_UPLOAD_BUCKET_NAME = 'live-notifications-csv-upload'