Projet

Général

Profil

0011-misc-fix-wrong-import-order-pylint-error-56982.patch

Valentin Deniaud, 21 septembre 2021 17:09

Télécharger (940 octets)

Voir les différences:

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(-)
src/authentic2/utils/evaluate.py
14 14
# You should have received a copy of the GNU Affero General Public License
15 15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 16

  
17
import ast
17 18
import sys
18 19

  
19 20
from django.core.exceptions import ValidationError
......
23 24
except ImportError:
24 25
    from django.utils.lru_cache import lru_cache
25 26

  
26
import ast
27 27

  
28 28
from django.utils.translation import ugettext as _
29 29

  
30
-