Skip to content

Commit 5909964

Browse files
authored
Merge pull request #85 from adafruit/pylint-fix
Fixed linting
2 parents db49779 + c7f401b commit 5909964

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

examples/dht_time_calibration_advance.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,8 @@
8787

8888
# Gather the highest read numbers from all reads done.
8989
best_result = max(
90-
[
91-
reads[milliseconds]["total_reads"]
92-
for milliseconds in reads # pylint: disable=consider-using-dict-items
93-
]
90+
reads[milliseconds]["total_reads"]
91+
for milliseconds in reads # pylint: disable=consider-using-dict-items
9492
)
9593
# Gather best time(s) in milliseconds where we got more reads
9694
best_times = [

0 commit comments

Comments
 (0)