From 46e554c533308e07362b6f9de151edfb17aac2a0 Mon Sep 17 00:00:00 2001 From: Laurent Monin Date: Thu, 7 Sep 2023 17:40:09 +0200 Subject: [PATCH] Apply isort changes to setup.py --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2e3998d7a..73b108be6 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,7 @@ from setuptools import ( from setuptools.command.install import install from setuptools.dist import Distribution + try: from setuptools.command.build import build except ImportError: @@ -401,7 +402,10 @@ class picard_build_ui(Command): if newer(uifile, pyfile): compile_ui(uifile, pyfile) - from resources import compile, makeqrc + from resources import ( + compile, + makeqrc, + ) makeqrc.main() compile.main()