Remove another unneeded lookup function

This commit is contained in:
2010-08-07 13:03:23 +01:00
parent c49f227e66
commit 2b2cf5e7b1
2 changed files with 1 additions and 6 deletions

View File

@@ -39,11 +39,6 @@ class EVEAccount(EVEAPIModel):
verbose_name="API Status",
help_text="End result of the last attempt at updating this object from the API.")
@property
def api_status_description(self):
for choice in API_STATUS_CHOICES:
if choice[0] == self.api_status:
return choice[1]
def in_corp(self, corpid):
for char in self.characters.all():