diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-02-16 19:55:46 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-02-16 23:00:31 -0500 |
commit | 9daaece7850cdd378163cd50bc524693f5294309 (patch) | |
tree | 80ca0ec55fbe6829f99e84fdfa3a1415985c3351 /mesonbuild/backend | |
parent | 0d6972887f1b7d39524c5faff0b3c8612b5d0ece (diff) | |
download | meson-9daaece7850cdd378163cd50bc524693f5294309.zip meson-9daaece7850cdd378163cd50bc524693f5294309.tar.gz meson-9daaece7850cdd378163cd50bc524693f5294309.tar.bz2 |
flake8: fix various whitespace errors with badly aligned code
Diffstat (limited to 'mesonbuild/backend')
-rw-r--r-- | mesonbuild/backend/backends.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index 2efae0f..eb17f92 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -1386,7 +1386,7 @@ class Backend: def eval_custom_target_command( self, target: build.CustomTarget, absolute_outputs: bool = False) -> \ - T.Tuple[T.List[str], T.List[str], T.List[str]]: + T.Tuple[T.List[str], T.List[str], T.List[str]]: # We want the outputs to be absolute only when using the VS backend # XXX: Maybe allow the vs backend to use relative paths too? source_root = self.build_to_src |