Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/hotfixes' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
fit-alessandro-berti committed Feb 22, 2024
2 parents 1567582 + ddf9e1f commit 2ed511c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pm4py/objects/powl/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def parse_powl_model_string(powl_string, level=0) -> POWL:

indented_str_list = [x.strip() for x in indented_str_list]
indented_str_list = [x[:-1] if x and x[-1] == ',' else x for x in indented_str_list]
PO = POWL()
PO = None
nodes = []

if indented_str_list:
Expand Down

0 comments on commit 2ed511c

Please sign in to comment.