|
@@ -2,6 +2,8 @@
|
|
|
# -*- coding: utf-8 -*-
|
|
|
# PYTHON_ARGCOMPLETE_OK
|
|
|
|
|
|
+import dingguo
|
|
|
+
|
|
|
import re
|
|
|
import os
|
|
|
import sys
|
|
@@ -46,14 +48,7 @@ class Order(object):
|
|
|
|
|
|
yaml.SafeDumper.add_representer(Order, lambda dumper, order: dumper.represent_dict(order.dict_repr()))
|
|
|
|
|
|
-class Figure(object):
|
|
|
-
|
|
|
- def __init__(self, value, unit):
|
|
|
- self.value = value
|
|
|
- assert type(unit) is unicode
|
|
|
- self.unit = unit
|
|
|
-
|
|
|
-class Distance(Figure):
|
|
|
+class Distance(dingguo.Figure):
|
|
|
|
|
|
def __init__(self, value, unit):
|
|
|
assert type(value) is float
|