From c5d320dc1ab0ca1bb6fd5dabea4132a5bb96093d Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Sat, 15 Feb 2020 16:03:59 +0100 Subject: [PATCH] Suppress incorrect lint warning --- expcs/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expcs/settings.py b/expcs/settings.py index 9ca0471..edf0760 100644 --- a/expcs/settings.py +++ b/expcs/settings.py @@ -12,7 +12,7 @@ https://docs.djangoproject.com/en/3.0/ref/settings/ import os -from expcs.custom_settings import * +from expcs.custom_settings import * # pylint: disable=unused-wildcard-import # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))