We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a03e555 commit 612624cCopy full SHA for 612624c
make/gen-size-sheet.py
@@ -30,8 +30,9 @@ def fill_target(target):
30
for line in handle:
31
data = line.split('\t')
32
example = data[0]
33
- sizes = ALL_SIZES[example]['sizes']
34
- sizes[target] = [data[1], data[2].rstrip()]
+ if example in ALL_EXAMPLES:
+ sizes = ALL_SIZES[example]['sizes']
35
+ sizes[target] = [data[1], data[2].rstrip()]
36
37
def create_sheet(args):
38
global ALL_EXAMPLES
0 commit comments