Skip to content

Commit

Permalink
DOCS: FIX: default (-1) color
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudocubic committed Aug 21, 2024
1 parent 806216e commit ee2208a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ravens/uml/d3.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ravens.io import parse_eap_data, parse_eap_diagrams

ea_rgb_dec2hex = {z * 65536 + y * 256 + x: "{:02x}{:02x}{:02x}".format(x, y, z) for x in range(256) for y in range(256) for z in range(256)}
ea_rgb_dec2hex[-1] = ea_rgb_dec2hex[13499135] # default color
ea_rgb_dec2hex[-1] = ea_rgb_dec2hex[0] # default color


def parse_link_style(link_style_string: str):
Expand Down

0 comments on commit ee2208a

Please sign in to comment.