Remove prints

This commit is contained in:
blitzmann
2016-05-16 23:56:46 -04:00
parent 62fd545d24
commit 655d658a52
3 changed files with 1 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ class Fighter(HandledItem, HandledCharge, ItemAttrShortcut, ChargeAttrShortcut):
def __init__(self, item):
"""Initialize a fighter from the program"""
self.__item = item
print self.__item.category.name
if self.isInvalid:
raise ValueError("Passed item is not a Fighter")

View File

@@ -96,7 +96,6 @@ class Fit(object):
self.__ship = Ship(item, self)
except ValueError:
self.__ship = Citadel(item, self)
print self.__ship
# @todo extra attributes is now useless, however it set to be
# the same as ship attributes for ease (so we don't have to
# change all instances in source). Remove this at some point