From 655d658a5201a083cf8f1eb171b59ffac37c67b3 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Mon, 16 May 2016 23:56:46 -0400 Subject: [PATCH] Remove prints --- eos/saveddata/fighter.py | 2 +- eos/saveddata/fit.py | 1 - service/fit.py | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/eos/saveddata/fighter.py b/eos/saveddata/fighter.py index ebbffb814..f7b58a2ba 100644 --- a/eos/saveddata/fighter.py +++ b/eos/saveddata/fighter.py @@ -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") diff --git a/eos/saveddata/fit.py b/eos/saveddata/fit.py index c95f2e150..8245f7516 100644 --- a/eos/saveddata/fit.py +++ b/eos/saveddata/fit.py @@ -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 diff --git a/service/fit.py b/service/fit.py index eb136a5d4..eefa64cca 100644 --- a/service/fit.py +++ b/service/fit.py @@ -363,7 +363,6 @@ class Fit(object): drone.amount += 1 elif thing.category.name == "Fighter": - print "dskfnds" fighter = eos.types.Fighter(thing) fit.projectedFighters.append(fighter) elif thing.group.name == "Effect Beacon":