diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 20:25:09 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | 969dc7e995fcc19418bf4c6f66ac97b5a4ff2150 (patch) | |
tree | 3b7b4451539aa1625c2e6d9caaefe6383d4147e0 /mesonbuild/interpreter.py | |
parent | 116da33cddeb1793329ddefcc0e6db74679931f2 (diff) | |
download | meson-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/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 0f04864..ac15401 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -53,7 +53,7 @@ class TryRunResultHolder(InterpreterObject): 'compiled': self.compiled_method, 'stdout': self.stdout_method, 'stderr': self.stderr_method, - }) + }) def returncode_method(self, args, kwargs): return self.res.returncode @@ -76,7 +76,7 @@ class RunProcess(InterpreterObject): self.methods.update({'returncode': self.returncode_method, 'stdout': self.stdout_method, 'stderr': self.stderr_method, - }) + }) def run_command(self, command_array, source_dir, build_dir, subdir, in_builddir): cmd_name = command_array[0] @@ -130,7 +130,7 @@ class EnvironmentVariablesHolder(MutableInterpreterObject): self.methods.update({'set': self.set_method, 'append': self.append_method, 'prepend': self.prepend_method, - }) + }) @stringArgs def add_var(self, method, args, kwargs): @@ -162,7 +162,7 @@ class ConfigurationDataHolder(MutableInterpreterObject): 'set10': self.set10_method, 'set_quoted': self.set_quoted_method, 'has': self.has_method, - }) + }) def is_used(self): return self.used @@ -346,7 +346,7 @@ class BuildMachine(InterpreterObject): 'cpu_family': self.cpu_family_method, 'cpu': self.cpu_method, 'endian': self.endian_method, - }) + }) def cpu_family_method(self, args, kwargs): return environment.detect_cpu_family(self.compilers) @@ -375,7 +375,7 @@ class CrossMachineInfo(InterpreterObject): 'cpu': self.cpu_method, 'cpu_family': self.cpu_family_method, 'endian': self.endian_method, - }) + }) def system_method(self, args, kwargs): return self.info['system'] @@ -588,7 +588,7 @@ class SubprojectHolder(InterpreterObject): super().__init__() self.held_object = subinterpreter self.methods.update({'get_variable': self.get_variable_method, - }) + }) def get_variable_method(self, args, kwargs): if len(args) != 1: @@ -623,7 +623,7 @@ class CompilerHolder(InterpreterObject): 'first_supported_argument': self.first_supported_argument_method, 'unittest_args': self.unittest_args_method, 'symbols_have_underscore_prefix': self.symbols_have_underscore_prefix_method, - }) + }) def version_method(self, args, kwargs): return self.compiler.version @@ -1012,7 +1012,7 @@ class MesonMain(InterpreterObject): 'project_name': self.project_name_method, 'get_cross_property': self.get_cross_property_method, 'backend': self.backend_method, - }) + }) def _find_source_script(self, name, args): # Prefer scripts in the current source directory |