There were some warnings that were combining words when printed because there was no space between the words when the strings were added together, i.e.:
print('Warning: The added metabolite (' + met + ') is not' +
'able to be taken up by any of the current models')
There were some warnings that were combining words when printed because there was no space between the words when the strings were added together, i.e.:
(https://github.com/segrelab/cometspy/blob/master/cometspy/layout.py#L828-829)
That specific line was mentioned in #25.
I found one other line that had a similar problem, and fixed that too.