Skip to content

Commit

Permalink
Fixed PEP8 violations
Browse files Browse the repository at this point in the history
  • Loading branch information
menify committed May 10, 2015
1 parent a7da3fb commit 7084bdf
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion aql/builtin_tools/aql_builder_dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,3 @@ def build(self, source_entities, targets):
# "copying <filepath> -> <detination dir>"

return out

2 changes: 1 addition & 1 deletion aql/builtin_tools/aql_builder_exec_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

# ==============================================================================


class ExecuteCommandBuilder (Builder):

NAME_ATTRS = ('targets', 'cwd')
Expand Down Expand Up @@ -97,4 +98,3 @@ def get_trace_name(self, source_entities, brief):

def get_trace_sources(self, source_entities, brief):
return source_entities[1:]

1 change: 0 additions & 1 deletion aql/builtin_tools/aql_builder_exec_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,3 @@ def get_trace_name(self, source_entities, brief):
return "%s(%s)" % (name, args)

return name

1 change: 0 additions & 1 deletion aql/builtin_tools/aql_builder_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,3 @@ def build(self, source_entities, targets):
# "copying <filepath> -> <detination dir>"

return out

2 changes: 1 addition & 1 deletion aql/builtin_tools/aql_builder_tar.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

# ==============================================================================


class TarFilesBuilder (FileBuilder):

NAME_ATTRS = ['target']
Expand Down Expand Up @@ -114,4 +115,3 @@ def get_trace_name(self, source_entities, brief):

def get_target_entities(self, source_entities):
return self.target

1 change: 0 additions & 1 deletion aql/builtin_tools/aql_builder_write_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,3 @@ def get_trace_name(self, source_entities, brief):

def get_target_entities(self, source_entities):
return self.target

2 changes: 1 addition & 1 deletion aql/builtin_tools/aql_builder_zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

# ==============================================================================


class ZipFilesBuilder (FileBuilder):

NAME_ATTRS = ['target']
Expand Down Expand Up @@ -116,4 +117,3 @@ def get_trace_name(self, source_entities, brief):

def get_target_entities(self, source_entities):
return self.target

0 comments on commit 7084bdf

Please sign in to comment.