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/compilers/cpp.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/compilers/cpp.py')
-rw-r--r-- | mesonbuild/compilers/cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 168ba7a..ecc911d 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -47,7 +47,7 @@ if T.TYPE_CHECKING: from ..environment import Environment from ..linkers import DynamicLinker from ..programs import ExternalProgram - from .mixins.clike import CLikeCompiler as CompilerMixinBase + CompilerMixinBase = CLikeCompiler else: CompilerMixinBase = object |