Skip to content

Commit 041aea1

Browse files
committed
don't print bins without much in them
1 parent 5c9b301 commit 041aea1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/floppy_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
buckets[b] += 1
4242
oi = -1
4343
for i, bi in enumerate(buckets):
44-
if bi > 0:
44+
if bi > 10:
4545
if i != oi + 1:
4646
print("---")
4747
oi = i

0 commit comments

Comments
 (0)