Skip to content

Commit c7f401b

Browse files
committed
Fixed linting
1 parent db49779 commit c7f401b

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)