summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-05-24 13:47:32 +0200
committerxengineering <me@xengineering.eu>2025-05-24 13:47:32 +0200
commit20796b28141ca1e1502675028d7f674cccff3c75 (patch)
tree01da1dd421f640d70895e6c74fb495e4b77e62b4
parentfdd5234c383f294d934da0901f3bf7a96f2c19a3 (diff)
downloadiot-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.
-rwxr-xr-xtools/resistor_selector.py2
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()