adafruit / Adafruit_CircuitPython_SHT4x

Python library for SHT4x temperature / humidity sensors
MIT License
11 stars 7 forks source link

NEWMODE value is printed in "sht.mode = adafruit_sht4x.Mode.MODE" call #6

Closed pklosko closed 3 years ago

pklosko commented 3 years ago

Solution: Comment print(new_mode), line 168, in

def mode(self, new_mode): print(new_mode) if not Mode.is_valid(new_mode): raise AttributeError("mode must be a Mode") self._mode = new_mode

jposada202020 commented 3 years ago

Thanks @pklosko corrected by #7