Skip to content

Commit

Permalink
Add missing commas to the contrib.sla module code examples. (#1972)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliavni authored and Tarrasch committed Dec 26, 2016
1 parent 4c33437 commit 9e29e6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions luigi/contrib/sqla.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class SQLATask(sqla.CopyToTable):
table = "item_property" # name of the table to store data
def rows(self):
for row in [("item1" "property1"), ("item2", "property2")]:
for row in [("item1", "property1"), ("item2", "property2")]:
yield row
if __name__ == '__main__':
Expand All @@ -66,7 +66,7 @@ class SQLATask(sqla.CopyToTable):
table = "item_property" # name of the table to store data
def rows(self):
for row in [("item1" "property1"), ("item2", "property2")]:
for row in [("item1", "property1"), ("item2", "property2")]:
yield row
if __name__ == '__main__':
Expand Down

0 comments on commit 9e29e6d

Please sign in to comment.