This **only** affects the printing of the .read() function. ``` >> print(sensors.uv.read()) >> 0.003000 ``` The actual value is unaffected ``` >> print(sensors.uv.read().uv) >> 0.003000000026077032 ``` [Here](https://github.com/matrix-io/matrix-lite-py/blob/master/hal_wrapper/drivers/sensors.cpp#L43) is the printing function that needs to be changed.
This only affects the printing of the .read() function.
The actual value is unaffected
Here is the printing function that needs to be changed.