__init__.py 163 B

123456789
  1. import yaml
  2. class Figure(object):
  3. def __init__(self, value, unit):
  4. self.value = value
  5. assert type(unit) is unicode
  6. self.unit = unit