diff options
author | xengineering <me@xengineering.eu> | 2025-05-24 13:47:32 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-05-24 13:47:32 +0200 |
commit | 20796b28141ca1e1502675028d7f674cccff3c75 (patch) | |
tree | 01da1dd421f640d70895e6c74fb495e4b77e62b4 /tools/resistor_selector.py | |
parent | fdd5234c383f294d934da0901f3bf7a96f2c19a3 (diff) | |
download | iot-contact-20796b28141ca1e1502675028d7f674cccff3c75.tar iot-contact-20796b28141ca1e1502675028d7f674cccff3c75.tar.zst iot-contact-20796b28141ca1e1502675028d7f674cccff3c75.zip |
tools: resistor_selector: Raise precision to 6
This had an actual effect on the output giving more available options.
Diffstat (limited to 'tools/resistor_selector.py')
-rwxr-xr-x | tools/resistor_selector.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/resistor_selector.py b/tools/resistor_selector.py index 144a1c0..1ee51b7 100755 --- a/tools/resistor_selector.py +++ b/tools/resistor_selector.py @@ -27,7 +27,7 @@ MULTIPLIERS = ( def main() -> None: - getcontext().prec = 3 + getcontext().prec = 6 args = Arguments.from_cli() |