Skip to content

Commit

Permalink
added missing comma from the list of allows constant value
Browse files Browse the repository at this point in the history
  • Loading branch information
adbharadwaj committed Apr 6, 2020
1 parent ffdb6c0 commit 402c5fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphspace_python/graphs/classes/gsgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ def validate_style_properties(style_properties, selector):
("source-arrow-fill", GSGraph.ALLOWED_ARROW_FILL),
("mid-source-arrow-fill", GSGraph.ALLOWED_ARROW_FILL),
("target-arrow-fill", GSGraph.ALLOWED_ARROW_FILL),
("mid-target-arrow-fill", GSGraph.ALLOWED_ARROW_FILL)
("mid-target-arrow-fill", GSGraph.ALLOWED_ARROW_FILL),
# Edge legend specific
("arrow-shape", GSGraph.ALLOWED_ARROW_SHAPES)
]
Expand Down Expand Up @@ -1375,4 +1375,4 @@ def validate_style_json(style_json):
if 'css' in elem:
GSGraph.validate_style_properties(elem['css'], elem['selector'])
else:
GSGraph.validate_style_properties(elem['style'], elem['selector'])
GSGraph.validate_style_properties(elem['style'], elem['selector'])

0 comments on commit 402c5fa

Please sign in to comment.