Finally I had to modify sonoff/sensors.py (line 84) to eliminate degree characters from unit_of_measurement value.
self._attr_native_unit_of_measurement = ''.join( c for c in UNITS[self.uid] if c not in '\xb0')
However, I think, it is not a comfortable way for workaround, it should be made again if an update comes to sonoff interface.