1
0
Fork 0

remove unused function

This commit is contained in:
Pedro de Oliveira 2017-12-08 21:50:47 +00:00
parent 9f54a47afa
commit e76bddcc26
1 changed files with 0 additions and 5 deletions

View File

@ -20,11 +20,6 @@ class program(object):
sort_keys=True, indent=4) sort_keys=True, indent=4)
def __repr__(self): def __repr__(self):
return self.toJSON() return self.toJSON()
def total(self):
result = self.weight
for child in self.children:
result += self.total(child)
return total
def countlol(oix): def countlol(oix):