Skip to content

Commit b72300d

Browse files
committed
Fixed linting
1 parent 81ee538 commit b72300d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/dht_time_calibration_advance.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@
8787

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

0 commit comments

Comments
 (0)