-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Description
In function insert_into_grid(grid, row, col, node_id) in bpmn_diagram_layouter.py there's (as a result of some refactor):
grid_cell.row += consts.Consts.widthWhich always causes TypeError as value of this const is:
width = "width"and trying to add integer and string in Python doesn't end well. Probably it should be either:
grid_cell.row += consts.Consts.grid_column_widthwhich is equal to:
grid_column_width = 2or:
grid_cell.row += 1as the comment above this operation suggests:
# if cell is already occupied, insert new rowReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels