style: [E303] too many blank lines (2)

pull/1257/head
Mike Sinkovsky 8 years ago committed by Jussi Pakkanen
parent 84902cb93a
commit 77515ee541
  1. 1
      mesonbuild/backend/backends.py
  2. 1
      mesonbuild/dependencies.py
  3. 1
      mesonbuild/interpreter.py
  4. 1
      mesonbuild/interpreterbase.py
  5. 1
      mesonbuild/mconf.py
  6. 1
      mesonbuild/modules/gnome.py
  7. 1
      mesonbuild/scripts/gtkdochelper.py

@ -441,7 +441,6 @@ class Backend():
arr.append(ts)
pickle.dump(arr, datafile)
def generate_depmf_install(self, d):
if self.build.dep_manifest_name is None:
return

@ -1104,7 +1104,6 @@ is sometimes mixed among the subprocess output. I have no idea
why. As a hack filter out everything that is not a flag."""
return [e for e in elems if e.startswith('-')]
def filter_arsg(self, args):
"""gnustep-config returns a bunch of garbage args such
as -O2 and so on. Drop everything that is not needed."""

@ -2458,7 +2458,6 @@ requirements use the version keyword argument instead.''')
if not os.path.isfile(fname):
raise InterpreterException('Tried to add non-existing source file %s.' % s)
def format_string(self, templ, args):
templ = self.to_native(templ)
if isinstance(args, mparser.ArgumentNode):

@ -507,7 +507,6 @@ class InterpreterBase:
return obj[index]
raise InterpreterException('Arrays do not have a method called "%s".' % method_name)
def reduce_arguments(self, args):
assert(isinstance(args, mparser.ArgumentNode))
if args.incorrect_order():

@ -120,7 +120,6 @@ class Conf:
else:
raise ConfException('Unknown option %s.' % k)
def print_conf(self):
print('Core properties:')
print(' Source dir', self.build.environment.source_dir)

@ -255,7 +255,6 @@ can not be used with the current version of glib-compiled-resources, due to
return dep_files, depends, subdirs
def _get_link_args(self, state, lib, depends=None, include_rpath=False):
if gir_has_extra_lib_arg():
link_command = ['--extra-library=%s' % lib.name]

@ -114,7 +114,6 @@ def build_gtkdoc(source_root, build_root, doc_subdir, src_subdirs,
gtkdoc_run_check(scanobjs_cmd, abs_out)
# Make docbook files
if mode == 'auto':
# Guessing is probably a poor idea but these keeps compat

Loading…
Cancel
Save