From 9fce3e573c34bf575a3527010d415f1c12a09370 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Tue, 21 Sep 2021 15:08:50 +0200 Subject: [PATCH 51/59] misc: fix unused-wildcard-import pylint error (#56982) --- src/authentic2/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentic2/widgets.py b/src/authentic2/widgets.py index 96f2e00c..d010a488 100644 --- a/src/authentic2/widgets.py +++ b/src/authentic2/widgets.py @@ -15,4 +15,4 @@ # along with this program. If not, see . # legacy module, please use authentic2.forms.widgets now. -from .forms.widgets import * # pylint: disable=wildcard-import +from .forms.widgets import * # pylint: disable=wildcard-import,unused-wildcard-import -- 2.30.2