You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diagram = Digraph() diagram.node(account["id"], browser["id"])
Creates a new node with the desired identifier: 01.08.2017-00:00:00
diagram = Digraph() diagram.edge(account["id"], browser["id"])
Unfortunately, it cuts of the identifier at the first ':': 01.08.2017-00
As a result, two different nodes are created.
I found in lang.py at line 81 that ":" is used as a static identifier.
Probably, a variable identifier with ":" as default parameter would be an appropriate solution.
The debugger indicates that the string is assembled incorrectly: '01.08.2017-00":00:00"'
The text was updated successfully, but these errors were encountered:
diagram = Digraph()
diagram.node(account["id"], browser["id"])
Creates a new node with the desired identifier: 01.08.2017-00:00:00
diagram = Digraph()
diagram.edge(account["id"], browser["id"])
Unfortunately, it cuts of the identifier at the first ':': 01.08.2017-00
As a result, two different nodes are created.
I found in
lang.py
at line 81 that ":" is used as a static identifier.Probably, a variable identifier with ":" as default parameter would be an appropriate solution.
The debugger indicates that the string is assembled incorrectly:
'01.08.2017-00":00:00"'
The text was updated successfully, but these errors were encountered: