We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81ee538 commit b72300dCopy full SHA for b72300d
examples/dht_time_calibration_advance.py
@@ -87,7 +87,10 @@
87
88
# Gather the highest read numbers from all reads done.
89
best_result = max(
90
- [reads[milliseconds]["total_reads"] for milliseconds in reads] # pylint: disable=consider-using-dict-items
+ [
91
+ reads[milliseconds]["total_reads"]
92
+ for milliseconds in reads # pylint: disable=consider-using-dict-items
93
+ ]
94
)
95
# Gather best time(s) in milliseconds where we got more reads
96
best_times = [
0 commit comments