Skip to content

Commit

Permalink
Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtheturtle committed Jul 8, 2015
1 parent 9036274 commit c86b904
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion boggle/boggle.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ def is_available_route(word, tile_map):
for route in routes:
last_position = route[len(route) - 1]
for position in positions:
# TODO do set comparison with tile map[letter] and touching positions of a position from a map
# TODO do set comparison with tile map[letter] and touching
# positions of a position from a map
if (positions_touching(last_position, position) and
position not in route):
new_route = route[:]
Expand Down

0 comments on commit c86b904

Please sign in to comment.