]> git.cworth.org Git - turbot/blobdiff - turbot/interaction.py
Fix a type in a comment
[turbot] / turbot / interaction.py
index 86f438c372b5358c8641d3497809d4d1b5b6ba3f..b0a88a069ebeace693d7002b46d119bae69bc225 100644 (file)
@@ -187,7 +187,7 @@ def edit_puzzle(turb, puzzle, trigger_id):
         solved = True
 
     solution_str = None
-    solution_list = puzzle.get("solution", ())
+    solution_list = puzzle.get("solution", [])
     if solution_list:
         solution_str = ", ".join(solution_list)
 
@@ -280,7 +280,7 @@ def edit_puzzle_submission(turb, payload, metadata):
         puzzle['status'] = 'solved'
     else:
         puzzle['status'] = 'unsolved'
-    puzzle['solution'] = ()
+    puzzle['solution'] = []
     solution = state['solution']['solution']['value']
     if solution:
         # Construct a list from a set to avoid any duplicates
@@ -321,7 +321,7 @@ def edit_puzzle_submission(turb, payload, metadata):
                                           puzzle['SK'])
 
     # If we are changing puzzle type (meta -> plain or plain -> meta)
-    # the the sort key has to change, so compute the new one and delete
+    # then the sort key has to change, so compute the new one and delete
     # the old item from the database.
     #
     # XXX: We should really be using a transaction here to combine the
@@ -1045,7 +1045,7 @@ def new_puzzle_submission(turb, payload, metadata):
     if rounds:
         puzzle['rounds'] = rounds
 
-    puzzle['solution'] = ()
+    puzzle['solution'] = []
     puzzle['status'] = 'unsolved'
 
     # Create a channel for the puzzle