mirror of https://github.com/m-labs/artiq.git
units: support direct float conversion
This commit is contained in:
parent
021d0d312e
commit
61dc177bce
|
@ -117,6 +117,9 @@ class Quantity:
|
||||||
else:
|
else:
|
||||||
return str(r_amount) + " " + self.unit
|
return str(r_amount) + " " + self.unit
|
||||||
|
|
||||||
|
def __float__(self):
|
||||||
|
return float(self.amount)
|
||||||
|
|
||||||
# mul/div
|
# mul/div
|
||||||
def _binop(self, other, opf_name, dim_function):
|
def _binop(self, other, opf_name, dim_function):
|
||||||
opf = getattr(self.amount, opf_name)
|
opf = getattr(self.amount, opf_name)
|
||||||
|
|
Loading…
Reference in New Issue