Fixed linting error

This commit is contained in:
alexjanousekGSA
2024-11-12 13:07:57 -05:00
parent 1a14becc9a
commit f6fbe1bd8d

View File

@@ -162,7 +162,9 @@ def _csp(config):
def create_app(application):
application.config['FEATURE_BEST_PRACTICES_ENABLED'] = os.getenv("FEATURE_BEST_PRACTICES_ENABLED", "false").lower() == "true"
application.config['FEATURE_BEST_PRACTICES_ENABLED'] = (
os.getenv("FEATURE_BEST_PRACTICES_ENABLED", "false").lower() == "true"
)
@application.context_processor
def inject_feature_flags():