Skip to content

Commit

Permalink
Fixed joining for nets
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrishnasanka committed Nov 18, 2021
1 parent 13e3445 commit 002543a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymint/mintconnection.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def to_MINT(self) -> str:
self.entity,
self.name,
self.source.to_MINT(),
" ".join([item.to_MINT() for item in self.sinks]),
", ".join([item.to_MINT() for item in self.sinks]),
self.params.to_MINT(),
)
return ret

0 comments on commit 002543a

Please sign in to comment.