Comment out GraphViz bug

This commit is contained in:
Daniel Rojas 2020-10-24 14:31:49 +02:00
parent 2c78e46c77
commit 9d0582e10c

View File

@ -362,7 +362,8 @@ class Harness:
if isinstance(mate, MatePin): if isinstance(mate, MatePin):
color = '#000000' color = '#000000'
elif isinstance(mate, MateComponent): elif isinstance(mate, MateComponent):
color = '#000000:#ffffff:#000000' # color = '#000000:#ffffff:#000000' # GraphViz bug? 'back' and 'both' do not work with multicolor edges
color = '#000000'
else: else:
raise Exception(f'{mate} is an unknown mate') raise Exception(f'{mate} is an unknown mate')