Skip to content

Commit

Permalink
small change
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jun 16, 2016
1 parent bd8144e commit 79d0d7c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/budy/models/bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,9 @@ def build_taxes(self):
return 0.0

def build_shipping(self):
cls = self.__class__
return cls.eval_shipping(self.sub_total, self.taxes, self.quantity)
return self.__class__.eval_shipping(
self.sub_total, self.taxes, self.quantity
)

def collect_empty(self):
empty = []
Expand Down

0 comments on commit 79d0d7c

Please sign in to comment.