diff options
Diffstat (limited to 'icefuzz/timings.py')
-rw-r--r-- | icefuzz/timings.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/icefuzz/timings.py b/icefuzz/timings.py index d6440f8..7869587 100644 --- a/icefuzz/timings.py +++ b/icefuzz/timings.py @@ -212,9 +212,10 @@ for filename in txt_inputs: celltype = None for line in f: line = line.split() - if len(len) > 1: + if len(line) > 1: if line[0] == "CELL": celltype = line[1] + database.setdefault(celltype, set()) else: database[celltype].add(tuple(line)) |