aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/detect.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-02-16 19:55:46 -0500
committerEli Schwartz <eschwartz@archlinux.org>2022-02-16 23:00:31 -0500
commit9daaece7850cdd378163cd50bc524693f5294309 (patch)
tree80ca0ec55fbe6829f99e84fdfa3a1415985c3351 /mesonbuild/compilers/detect.py
parent0d6972887f1b7d39524c5faff0b3c8612b5d0ece (diff)
downloadmeson-9daaece7850cdd378163cd50bc524693f5294309.zip
meson-9daaece7850cdd378163cd50bc524693f5294309.tar.gz
meson-9daaece7850cdd378163cd50bc524693f5294309.tar.bz2
flake8: fix various whitespace errors with badly aligned code
Diffstat (limited to 'mesonbuild/compilers/detect.py')
-rw-r--r--mesonbuild/compilers/detect.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mesonbuild/compilers/detect.py b/mesonbuild/compilers/detect.py
index 1c91a33..6a595e1 100644
--- a/mesonbuild/compilers/detect.py
+++ b/mesonbuild/compilers/detect.py
@@ -255,8 +255,7 @@ def _get_compilers(env: 'Environment', lang: str, for_machine: MachineChoice) ->
def _handle_exceptions(
exceptions: T.Mapping[str, T.Union[Exception, str]],
binaries: T.List[T.List[str]],
- bintype: str = 'compiler'
- ) -> T.NoReturn:
+ bintype: str = 'compiler') -> T.NoReturn:
errmsg = f'Unknown {bintype}(s): {binaries}'
if exceptions:
errmsg += '\nThe following exception(s) were encountered:'