We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeError: unsupported operand type(s) for -: 'NoneType' and 'NoneType'
2 parents 26d468d + 2f91c23 commit f21d5a4Copy full SHA for f21d5a4
CPAC/utils/monitoring/draw_gantt_chart.py
@@ -401,7 +401,7 @@ def generate_gantt_chart(
401
return
402
403
for node in nodes_list:
404
- if "duration" not in node:
+ if "duration" not in node and (node["start"] and node["finish"]):
405
node["duration"] = (node["finish"] - node["start"]).total_seconds()
406
407
# Create the header of the report with useful information
0 commit comments