Skip to content

Commit

Permalink
Use '->' instead of '+' for different segments in Sequential
Browse files Browse the repository at this point in the history
  • Loading branch information
kduxin committed Oct 21, 2022
1 parent 6bb1f82 commit 51d7fb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firelang/utils/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def parse_func(name: str, args: Namespace = Namespace(), **kwargs):
locals().update(args.__dict__)
locals().update(kwargs)
segs = name.split("+")
segs = name.split("->")
funcsegs = []

for nameseg in segs:
Expand Down

0 comments on commit 51d7fb6

Please sign in to comment.