Skip to content

Commit 053e0f4

Browse files
committed
pylint fix
1 parent 354dbf9 commit 053e0f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_dht.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def measure(self):
139139
data returned from the device (try again)
140140
"""
141141
delay_between_readings = 0.5
142-
if(self._dht11):
142+
if self._dht11 :
143143
delay_between_readings = 1.0
144144
if time.monotonic()-self._last_called > delay_between_readings:
145145
self._last_called = time.monotonic()

0 commit comments

Comments
 (0)