diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-27 13:52:20 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-27 13:52:20 +0200 |
commit | 94e8537430ab7496e4b8e697581d65b06cf8b979 (patch) | |
tree | 400ddf6deac24ce3b21a0678bfe9afb5f7f8a1e9 /src/ee/formatting | |
parent | 0259c6f907875b54e5d1df4bc89efa1c293d2812 (diff) | |
download | ee-python-94e8537430ab7496e4b8e697581d65b06cf8b979.tar.gz ee-python-94e8537430ab7496e4b8e697581d65b06cf8b979.tar.bz2 ee-python-94e8537430ab7496e4b8e697581d65b06cf8b979.tar.xz ee-python-94e8537430ab7496e4b8e697581d65b06cf8b979.zip |
EeVal: Supporting omega symbol in addition to ohm symbol (which are
usually graphically equal).
Diffstat (limited to 'src/ee/formatting')
-rw-r--r-- | src/ee/formatting/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ee/formatting/__init__.py b/src/ee/formatting/__init__.py index d32f7f9..073d533 100644 --- a/src/ee/formatting/__init__.py +++ b/src/ee/formatting/__init__.py @@ -14,7 +14,7 @@ class ESeries(object): def __init__(self, series): self.series = series - def closest(self, value, round_direction = ROUND_CLOSEST): + def closest(self, value, round_direction=ROUND_CLOSEST): if round_direction != ESeries.ROUND_CLOSEST: raise NotImplementedError("Only closest rounding is implemented for now") e = math.floor(math.log10(value)) |