Fixes: 1) Corrected `apply_addresses` logic to handle address validation more robustly; 2) Fixed incorrect imports and annotations for better type safety; 3) Resolved typos and clarified docstrings for various views and methods. Extra: Adjusted formatting, added `# type: ignore` for stricter type checks, and removed unused `dist/` directory from `.dockerignore`.
12 lines
283 B
Python
12 lines
283 B
Python
# noinspection PyUnresolvedReferences
|
|
from evibes.settings.base import * # noqa: F403
|
|
|
|
GRAPH_MODELS = {
|
|
"all_applications": True,
|
|
"group_models": True,
|
|
}
|
|
|
|
EXTENSIONS_MAX_UNIQUE_QUERY_ATTEMPTS = 500
|
|
|
|
HEALTHCHECK_CELERY_RESULT_TIMEOUT = 5
|
|
HEALTHCHECK_CELERY_QUEUE_TIMEOUT = 5
|