Fix/ignore a few new Ruff violations

This commit is contained in:
Bruno Alla 2025-06-18 14:10:54 +01:00
parent e9d3dc053a
commit 82b740d1e3

View File

@ -17,9 +17,9 @@ app.config_from_object("django.conf:settings", namespace="CELERY")
@setup_logging.connect
def config_loggers(*args, **kwargs):
from logging.config import dictConfig
from logging.config import dictConfig # noqa: PLC0415
from django.conf import settings
from django.conf import settings # noqa: PLC0415
dictConfig(settings.LOGGING)