flake8: fix non-idiomatic ordering of "if not in" checks

pull/10404/head
Eli Schwartz 2 years ago committed by Jussi Pakkanen
parent 462b35e4b1
commit 3f42c844de
  1. 6
      mesonbuild/dependencies/dub.py

@ -186,7 +186,7 @@ class DubDependency(ExternalDependency):
for tgt in description['targets']:
targets[tgt['rootPackage']] = tgt
if not name in targets:
if name not in targets:
self.is_found = False
if self.pkg['targetType'] == 'sourceLibrary':
# source libraries have no associated targets,
@ -231,13 +231,13 @@ class DubDependency(ExternalDependency):
self.compile_args.append('-I' + path)
for path in bs['stringImportPaths']:
if not 'import_dir' in d_feature_args[self.compiler.id]:
if 'import_dir' not in d_feature_args[self.compiler.id]:
break
flag = d_feature_args[self.compiler.id]['import_dir']
self.compile_args.append(f'{flag}={path}')
for ver in bs['versions']:
if not 'version' in d_feature_args[self.compiler.id]:
if 'version' not in d_feature_args[self.compiler.id]:
break
flag = d_feature_args[self.compiler.id]['version']
self.compile_args.append(f'{flag}={ver}')

Loading…
Cancel
Save