remove debug code

This commit is contained in:
Jan Grewe 2019-09-09 15:18:09 +02:00
parent fb7f856953
commit 12c0807dd6

View File

@ -58,8 +58,6 @@ def has_signal(line, col_names):
if n.lower() == "signal" and i < len(values):
if len(values[i].strip()) > 0 and values[i].strip()[0] != "-":
return True
else:
print(i, values[i])
return False
@ -119,8 +117,8 @@ def read_stimuli_file(dataset):
index += 1
elif l.lower().startswith("#key"): # table data coming
data, index = parse_table(lines, index)
stimulus_indices.append(data)
# we are done with this repro run
stimulus_indices.append(data)
settings[current_section_name] = current_section.copy()
repro_settings.append(settings.copy())
current_section = None