aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/python.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-10-21 19:05:27 -0400
committerXavier Claessens <xclaesse@gmail.com>2021-10-27 09:51:52 -0400
commit894735288920816b9ad668ca27ce2e013a3f2640 (patch)
tree62d4d41bd5adf436507968447480c08120a14a6e /mesonbuild/modules/python.py
parent81a2c1b36d91702d82234136ed1868c7118af322 (diff)
downloadmeson-894735288920816b9ad668ca27ce2e013a3f2640.zip
meson-894735288920816b9ad668ca27ce2e013a3f2640.tar.gz
meson-894735288920816b9ad668ca27ce2e013a3f2640.tar.bz2
fix various flake8 whitespace errors
Diffstat (limited to 'mesonbuild/modules/python.py')
-rw-r--r--mesonbuild/modules/python.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py
index fc28b9a..f183177 100644
--- a/mesonbuild/modules/python.py
+++ b/mesonbuild/modules/python.py
@@ -338,7 +338,7 @@ if T.TYPE_CHECKING:
link_libpython: bool
paths: T.Dict[str, str]
platform: str
- suffix : str
+ suffix: str
variables: T.Dict[str, str]
version: str
@@ -501,10 +501,10 @@ class PythonInstallation(ExternalProgramHolder):
mlog.log('Dependency', mlog.bold('python'), 'skipped: feature', mlog.bold(feature), 'disabled')
else:
for d in python_factory(self.interpreter.environment,
- MachineChoice.BUILD if kwargs.get('native', False) else MachineChoice.HOST,
- kwargs,
- process_method_kw({DependencyMethods.PKGCONFIG, DependencyMethods.SYSTEM}, kwargs),
- self):
+ MachineChoice.BUILD if kwargs.get('native', False) else MachineChoice.HOST,
+ kwargs,
+ process_method_kw({DependencyMethods.PKGCONFIG, DependencyMethods.SYSTEM}, kwargs),
+ self):
dep = d()
if dep.found():
break