From c38b832e5a83c90945521f8be8044f6f0e8e9f27 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Mon, 20 Sep 2021 14:41:41 +0200 Subject: [PATCH 11/59] misc: fix wrong-import-order pylint error (#56982) --- src/authentic2/utils/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentic2/utils/evaluate.py b/src/authentic2/utils/evaluate.py index 8633f70e..2f098a3f 100644 --- a/src/authentic2/utils/evaluate.py +++ b/src/authentic2/utils/evaluate.py @@ -14,6 +14,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +import ast import sys from django.core.exceptions import ValidationError @@ -23,7 +24,6 @@ try: except ImportError: from django.utils.lru_cache import lru_cache -import ast from django.utils.translation import ugettext as _ -- 2.30.2