More linting and changed default var to false for polling

This commit is contained in:
Alex Janousek
2025-09-26 16:54:35 -04:00
parent a5f551e43d
commit 96c9bc3e5e
3 changed files with 13 additions and 36 deletions

View File

@@ -90,7 +90,7 @@ class Config(object):
],
}
FEATURE_SOCKET_ENABLED = getenv("FEATURE_SOCKET_ENABLED", "true") == "true"
FEATURE_SOCKET_ENABLED = getenv("FEATURE_SOCKET_ENABLED", "false") == "true"
def _s3_credentials_from_env(bucket_prefix):

View File

@@ -1,7 +1,5 @@
# -*- coding: utf-8 -*-
import json
import os
import time
from functools import partial
from flask import (
@@ -22,7 +20,6 @@ from markupsafe import Markup
from app import (
current_service,
format_datetime_table,
job_api_client,
notification_api_client,
service_api_client,
)