]> asedeno.scripts.mit.edu Git - bluechips.git/blob - bluechips/model/tag.py
Expenditures can now be given a list of "tags"
[bluechips.git] / bluechips / model / tag.py
1 class Tag(object):
2     def __init__(self, expenditure=None, tag=u""):
3         self.expenditure = expenditure
4         self.tag = tag
5
6     def __repr__(self):
7         return '<Tag: expense: %s value: %s>' % (self.expenditure,
8                                                             self.tag)
9
10 __all__ = ['Tag']