X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=bluechips%2Fmodel%2Ftag.py;fp=bluechips%2Fmodel%2Ftag.py;h=c6a3661c28bcddc8dad27be0b633c9a252233f00;hb=f4d8f4cc0fa9643c3ca04c7dcc2c87f3790160de;hp=0000000000000000000000000000000000000000;hpb=2cd8bb4364413fcc4fc980201903e75d48c90df4;p=bluechips.git diff --git a/bluechips/model/tag.py b/bluechips/model/tag.py new file mode 100644 index 0000000..c6a3661 --- /dev/null +++ b/bluechips/model/tag.py @@ -0,0 +1,10 @@ +class Tag(object): + def __init__(self, expenditure=None, tag=u""): + self.expenditure = expenditure + self.tag = tag + + def __repr__(self): + return '' % (self.expenditure, + self.tag) + +__all__ = ['Tag']