From dab8f07e6d183c6e6ba917e990254a497f11d62d Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Sat, 20 May 2023 22:39:00 +0300 Subject: [PATCH] Suppress unused import in django-stubs/conf/__init__.pyi --- django-stubs/conf/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django-stubs/conf/__init__.pyi b/django-stubs/conf/__init__.pyi index 25dfbc0f70..9651961b84 100644 --- a/django-stubs/conf/__init__.pyi +++ b/django-stubs/conf/__init__.pyi @@ -5,7 +5,7 @@ from django.utils.functional import LazyObject from typing_extensions import Literal # explicit dependency on standard settings to make it loaded -from . import global_settings +from . import global_settings # noqa: F401 ENVIRONMENT_VARIABLE: Literal["DJANGO_SETTINGS_MODULE"] DEFAULT_STORAGE_ALIAS: Literal["default"]