We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa77f3 commit 01b0684Copy full SHA for 01b0684
scripts/inputs.py
@@ -57,7 +57,8 @@ def transpose(m):
57
v = list(inputs.values())
58
values.append((len(v), sum(v)))
59
60
- min_inputs = min(min_inputs, len(v))
+ if len(v) != 0:
61
+ min_inputs = min(min_inputs, len(v))
62
max_inputs = max(max_inputs, len(v))
63
nb_inputs = max(nb_inputs, sum(v))
64
0 commit comments