Skip to content

Commit

Permalink
Remove one unnecessary list copy
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtheturtle committed Jul 8, 2015
1 parent 8fc3580 commit 4739829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boggle/boggle.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def is_available_route(word, tile_map):
if not new_routes:
return False

routes = copy.copy(new_routes)
routes = new_routes


def get_tile_map(board):
Expand Down

0 comments on commit 4739829

Please sign in to comment.