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/interpreter | |
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/interpreter')
-rw-r--r-- | mesonbuild/interpreter/type_checking.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/interpreter/type_checking.py b/mesonbuild/interpreter/type_checking.py index 15fa61b..e94027b 100644 --- a/mesonbuild/interpreter/type_checking.py +++ b/mesonbuild/interpreter/type_checking.py @@ -287,8 +287,8 @@ CT_BUILD_BY_DEFAULT: KwargInfo[T.Optional[bool]] = KwargInfo('build_by_default', CT_BUILD_ALWAYS: KwargInfo[T.Optional[bool]] = KwargInfo( 'build_always', (bool, NoneType), - deprecated='0.47.0', - deprecated_message='combine build_by_default and build_always_stale instead.', + deprecated='0.47.0', + deprecated_message='combine build_by_default and build_always_stale instead.', ) CT_BUILD_ALWAYS_STALE: KwargInfo[T.Optional[bool]] = KwargInfo( |