We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d78a4 commit 74df811Copy full SHA for 74df811
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name="ferpy",
5
- version="0.1.15",
+ version="0.1.16",
6
author="Jon Gabirondo-López",
7
author_email="jon.gabirondol@ehu.eus",
8
description="A Python implementation of the FER data structure.",
src/ferpy/main/quantity_values.py
@@ -138,6 +138,6 @@ def __str__(self):
138
if len(self.values) == 1 and len(self.values[0]) == 1:
139
value = self.values[0][0]
140
uncertainty = self.standard_uncertainties[0][0] if self.standard_uncertainties else 0
141
- return rf"${symbol} = ({value} \pm {uncertainty}) \, {unit}$"
+ return rf"{symbol} = ({value} \pm {uncertainty}) \, {unit}"
142
143
return f"QuantityValues: {self.name or 'Unnamed'}"
0 commit comments