Chromium Code Reviews| Index: adb/contrib/high.py |
| diff --git a/adb/contrib/high.py b/adb/contrib/high.py |
| index d5127c38dead4cc3f83a0fce574dc8f4563df2b9..d465c79a945190db243f1910777b2784e29d2c8c 100644 |
| --- a/adb/contrib/high.py |
| +++ b/adb/contrib/high.py |
| @@ -638,7 +638,7 @@ class HighDevice(object): |
| # TODO(maruel): Support cold temperatures below 0°C. |
| continue |
| sensor_type = self.PullContent(path + '/type') |
| - if sensor_type and not sensor_type.startswith('tsens_tz_sensor'): |
|
bpastene
2017/04/28 00:19:51
Would you happen to remember why they were ignored
M-A Ruel
2017/04/28 17:15:13
Yes. It was quite spammy but I don't recall exactl
bpastene
2017/04/29 00:24:08
Will do.
|
| + if sensor_type: |
| out[sensor_type.strip()] = value |
| # Filter out unnecessary stuff. |
| return out |