diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-08-26 09:37:39 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-09-24 10:36:05 -0700 |
commit | 9795323b8649b8615e55cad981d235e432afef02 (patch) | |
tree | 4a53251558aca1906f776893604d45ff03cf74dc /mesonbuild/modules/qt.py | |
parent | 92b21a0045e32229f5b3b01429b683fbe1f33abe (diff) | |
download | meson-9795323b8649b8615e55cad981d235e432afef02.zip meson-9795323b8649b8615e55cad981d235e432afef02.tar.gz meson-9795323b8649b8615e55cad981d235e432afef02.tar.bz2 |
pylint: check for duplicate imports
I ran into one of these from LGTM, and it would be nice if pylint could
warn me as part of my local development process instead of waiting for
the CI to tell me.
Diffstat (limited to 'mesonbuild/modules/qt.py')
-rw-r--r-- | mesonbuild/modules/qt.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mesonbuild/modules/qt.py b/mesonbuild/modules/qt.py index 19d9a63..7dafad7 100644 --- a/mesonbuild/modules/qt.py +++ b/mesonbuild/modules/qt.py @@ -13,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -from mesonbuild import coredata import os import shutil import typing as T @@ -21,10 +20,10 @@ import xml.etree.ElementTree as ET from . import ModuleReturnValue, ExtensionModule from .. import build +from .. import coredata from .. import mlog from ..dependencies import find_external_dependency, Dependency, ExternalLibrary from ..mesonlib import MesonException, File, FileOrString, version_compare, Popen_safe -from . import ModuleReturnValue, ExtensionModule from ..interpreter import extract_required_kwarg from ..interpreter.type_checking import NoneType from ..interpreterbase import ContainerTypeInfo, FeatureDeprecated, KwargInfo, noPosargs, FeatureNew, typed_kwargs |