Whitespace fixes

Removing trailing whitepace.
This commit is contained in:
Kevin Cathcart
2017-11-18 20:43:37 -05:00
parent 3e31502fc0
commit 9d4d3b8456
8 changed files with 50 additions and 50 deletions

View File

@@ -185,7 +185,7 @@ class World(object):
return True
return False
def has_beaten_game(self, state):
if state.has('Triforce'): return True
if self.goal in ['triforcehunt']:
@@ -329,7 +329,7 @@ class CollectionState(object):
return item in self.prog_items
else:
return self.item_count(item) >= count
def item_count(self, item):
return len([pritem for pritem in self.prog_items if pritem == item])