aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 20:25:09 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commit969dc7e995fcc19418bf4c6f66ac97b5a4ff2150 (patch)
tree3b7b4451539aa1625c2e6d9caaefe6383d4147e0 /mesonbuild/build.py
parent116da33cddeb1793329ddefcc0e6db74679931f2 (diff)
downloadmeson-969dc7e995fcc19418bf4c6f66ac97b5a4ff2150.zip
meson-969dc7e995fcc19418bf4c6f66ac97b5a4ff2150.tar.gz
meson-969dc7e995fcc19418bf4c6f66ac97b5a4ff2150.tar.bz2
style: fix E124 violations
E124: closing bracket does not match visual indentation Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index 826858d..fb88ab4 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -44,7 +44,7 @@ known_basic_kwargs = {'install': True,
'sources': True,
'objects': True,
'native': True,
- }
+ }
# These contain kwargs supported by both static and shared libraries. These are
# combined here because a library() call might be shared_library() or
@@ -61,7 +61,7 @@ known_lib_kwargs.update({'version': True, # Only for shared libs
'vala_vapi': True,
'vala_gir': True,
'pic': True, # Only for static libs
- })
+ })
class InvalidArguments(MesonException):