diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-09-15 00:32:57 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-10-04 16:29:31 -0400 |
commit | 4ab70c5512f147c7dded62817e54724830740dfd (patch) | |
tree | cd664850739d7a989cd6348f1b12db4aab5fb0fb /mesonbuild/mesonlib/universal.py | |
parent | c582abbbcf7cb8e76f02fe87bb3d6a31fc44fff7 (diff) | |
download | meson-4ab70c5512f147c7dded62817e54724830740dfd.zip meson-4ab70c5512f147c7dded62817e54724830740dfd.tar.gz meson-4ab70c5512f147c7dded62817e54724830740dfd.tar.bz2 |
fix extra whitespace
discovered via flake8 --select E303
Diffstat (limited to 'mesonbuild/mesonlib/universal.py')
-rw-r--r-- | mesonbuild/mesonlib/universal.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mesonbuild/mesonlib/universal.py b/mesonbuild/mesonlib/universal.py index f81c01a..9cf1cf0 100644 --- a/mesonbuild/mesonlib/universal.py +++ b/mesonbuild/mesonlib/universal.py @@ -586,7 +586,6 @@ class PerMachineDefaultable(PerMachine[T.Optional[_T]]): return m.default_missing() - class PerThreeMachineDefaultable(PerMachineDefaultable, PerThreeMachine[T.Optional[_T]]): """Extends `PerThreeMachine` with the ability to default from `None`s. """ @@ -1299,7 +1298,6 @@ def replace_if_different(dst: str, dst_tmp: str) -> None: os.unlink(dst_tmp) - def listify(item: T.Any, flatten: bool = True) -> T.List[T.Any]: ''' Returns a list with all args embedded in a list if they are not a list. |