074-dump_all: fix bug when annotating wires speed model

Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
Alessandro Comodi 2020-02-07 14:54:08 +01:00 committed by Keith Rothman
parent 43699a09ac
commit 3f435ea30b
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ def annotate_wires_speed_model(wires, speed_data):
cap = wire_speed_data['cap']
res = wire_speed_data['res']
if cap != '0.000' and res != '0.000':
if cap != '0.000' or res != '0.000':
wires[wire_name] = {
'cap': cap,
'res': res,