diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-12-07 14:58:23 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-01-04 12:20:59 -0800 |
commit | a539fda0cf6342398fae802827221ed15df5de56 (patch) | |
tree | 3ae6291bfa0f1eb860439c707735a4bfb2b5eb06 /mesonbuild/build.py | |
parent | e81acbd6069e8c1ae8e3be7bb83ddc239009d42d (diff) | |
download | meson-a539fda0cf6342398fae802827221ed15df5de56.zip meson-a539fda0cf6342398fae802827221ed15df5de56.tar.gz meson-a539fda0cf6342398fae802827221ed15df5de56.tar.bz2 |
fix LGTM warnings
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 9904cbe..dacf68b 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from collections import OrderedDict, defaultdict +from collections import OrderedDict from functools import lru_cache import copy import hashlib @@ -32,7 +32,7 @@ from .mesonlib import ( OptionKey, ) from .compilers import ( - Compiler, all_languages, is_object, clink_langs, sort_clink, lang_suffixes, + Compiler, is_object, clink_langs, sort_clink, lang_suffixes, is_known_suffix ) from .linkers import StaticLinker |