Skip to content

Commit

Permalink
SpiderFootHelpers: buildGraphGexf: set color alpha channel to 1 (#1819)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoles authored Nov 5, 2023
1 parent 1a9bcd7 commit e17b230
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spiderfoot/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,8 @@ def buildGraphGexf(root: str, title: str, data: typing.List[str], flt: typing.Op
color = {
'r': 0,
'g': 0,
'b': 0
'b': 0,
'a': 0
}

if dst not in nodelist:
Expand Down

0 comments on commit e17b230

Please sign in to comment.