mirror of
https://github.com/home-assistant/core.git
synced 2025-08-05 21:55:10 +02:00
Format SNMP sensor data which are not strings/counters (#44823)
This commit is contained in:
@@ -210,4 +210,4 @@ class SnmpData:
|
||||
self.value = self._default_value
|
||||
else:
|
||||
for resrow in restable:
|
||||
self.value = str(resrow[-1])
|
||||
self.value = resrow[-1].prettyPrint()
|
||||
|
Reference in New Issue
Block a user