We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9086918 commit f6c49bfCopy full SHA for f6c49bf
mats/tkwidgets.py
@@ -216,7 +216,7 @@ def _update(self):
216
value_str = f"{value:.4g}"
217
else:
218
try:
219
- value_str = f"{value.magnitude}"
+ value_str = f"{value.magnitude:.4g}"
220
except AttributeError:
221
value_str = f"{value}"
222
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "mats"
3
-version = "0.74.9"
+version = "0.74.10"
4
description = "Manufacturing Automated Test System, a framework for building device testing quickly and consistently"
5
authors = [
6
{name = "Jason R. Jones", email = "slightlynybbled@gmail.com"},
0 commit comments