Skip to content

Commit

Permalink
Lily feedback: Undo changes not relevant to runtime behaviour.
Browse files Browse the repository at this point in the history
  • Loading branch information
mario-vera committed May 25, 2018
1 parent 5d0da08 commit 9345386
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions lib/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,15 +226,7 @@ def generate_products(self):
script = flags + commands

for product in self.products:
items = product.generate()
for item in items:
if isinstance(item, list):
for subitem in item:
#TODO: What to do with this elements?
#script += subitem
continue
else:
script += item
script += product.generate()

script += """
Expand Down

0 comments on commit 9345386

Please sign in to comment.